all: test

install:

distclean:	
	rm test
clean:
	rm test

test: test.c
	gcc -Wall -g -static -o test -I../src -L../src/.libs test.c -lch


