]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - examples/Makefile
hlint
[Lucu.git] / examples / Makefile
index 37c59cb9ab74d6169cb31ac88dfd7e946ed29006..c9a0cb46ba39f1b268ed3fc0067d33098fc50e4d 100644 (file)
@@ -10,6 +10,9 @@ IMPLANT ?= ../dist/build/lucu-implant-file/lucu-implant-file
 
 build: $(TARGETS)
 
+SSL: SSL.hs
+       -ghc -Wall --make $@ -threaded -O3 -idist -odir dist -hidir dist
+
 %: %.hs
        ghc -Wall --make $@ -threaded -O3 -idist -odir dist -hidir dist
 
@@ -22,11 +25,11 @@ clean:
 Implanted.hs: dist/MiseRafturai.hs
 dist/MiseRafturai.hs: mise-rafturai.html $(IMPLANT)
        mkdir -p dist
-       $(IMPLANT) -m MiseRafturai -o $@ $<
+       $(IMPLANT) -m MiseRafturai -o $@ $< || (rm -f $@; exit 1)
 
 ImplantedSmall.hs: dist/SmallFile.hs
 dist/SmallFile.hs: small-file.txt $(IMPLANT)
        mkdir -p dist
-       $(IMPLANT) -m SmallFile -t "text/plain; charset=\"UTF-8\"" -o $@ $<
+       $(IMPLANT) -m SmallFile -t "text/plain; charset=\"UTF-8\"" -o $@ $< || (rm -f $@; exit 1)
 
 .PHONY: build run clean