packages feed

RESTng-0.1: Example/Makefile

.PHONY: all application scripts clean

all: application scripts

application:
	ghc -o main --make Main.hs

scripts:
	ghc --make CreateSchema.hs

clean:
	-rm main CreateSchema
	-rm *.o *.hi *~
	-rm  Resource/*.o Resource/*.hi Resource/*~