X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=examples%2FMakefile;h=abd928eb482b505dc60b8a194b7d65d2e29192ba;hb=70bf5bd248aa426ca4e410b3fb9a0529354aedaf;hp=5200e84479c35e7a8296d3fb84454a0c01e61991;hpb=e53a2f3202f763e844de725712f1bf26b82cd41f;p=Lucu.git diff --git a/examples/Makefile b/examples/Makefile index 5200e84..abd928e 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,18 +1,28 @@ -build: MiseRafturai.hs SmallFile.hs - ghc --make HelloWorld -threaded -O3 -fwarn-unused-imports - ghc --make Implanted -threaded -O3 -fwarn-unused-imports - ghc --make ImplantedSmall -threaded -O3 -fwarn-unused-imports - ghc --make Multipart -threaded -O3 -fwarn-unused-imports +TARGETS = \ + HelloWorld \ + MiseRafturai \ + Implanted \ + ImplantedSmall \ + Multipart \ + SSL \ + $(NULL) + +build: $(TARGETS) + +%: %.hs + ghc --make $@ -threaded -O3 -fwarn-unused-imports run: build ./HelloWorld clean: - rm -f HelloWorld Implanted MiseRafturai.hs ImplantedSmall SmallFile.hs Multipart *.hi *.o + rm -f $(TARGETS) *.hi *.o MiseRafturai.hs SmallFile.hs MiseRafturai.hs: mise-rafturai.html lucu-implant-file -m MiseRafturai -o $@ $< +ImplantedSmall.hs: SmallFile.hs + SmallFile.hs: small-file.txt lucu-implant-file -m SmallFile -o $@ $<