packages feed

WURFL-0.1: Test/Makefile

debug:
	ghc -o test -package hxt -fglasgow-exts -O2 -hidir interfaces -odir bin -i../src --make test.hs
	
	
prof:
	ghc -o test -prof -auto-all -O2 -hidir interfaces -odir bin -i../src --make test.hs
	
clean:
	rm -f test
	rm -f *.o
	rm -f *.hi
	rm -f *.exe
	rm -f test.prof
	rm -f *.pdf
	rm -rf bin
	rm -rf interfaces
	mkdir bin
	mkdir interfaces