Lucu-0.1: examples/Makefile
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
run: build
./HelloWorld
clean:
rm -f HelloWorld Implanted MiseRafturai.hs ImplantedSmall SmallFile.hs Multipart *.hi *.o
MiseRafturai.hs: mise-rafturai.html
lucu-implant-file -m MiseRafturai -o $@ $<
SmallFile.hs: small-file.txt
lucu-implant-file -m SmallFile -o $@ $<
.PHONY: build run clean