]> gitweb @ CieloNegro.org - Lucu.git/blob - examples/Makefile
Added an example of lucu-implant-file.
[Lucu.git] / examples / Makefile
1 build: MiseRafturai.hs
2         ghc --make HelloWorld -threaded -O3
3         ghc --make Implanted -threaded -O3
4
5 run: build
6         ./HelloWorld
7
8 clean:
9         rm -f HelloWorld Implanted MiseRafturai.hs *.hi *.o
10
11 MiseRafturai.hs: mise-rafturai.html
12         lucu-implant-file -m MiseRafturai -o $@ $<
13
14 .PHONY: build run clean