]> gitweb @ CieloNegro.org - Lucu.git/blob - examples/Makefile
SSL Support
[Lucu.git] / examples / Makefile
1 build: MiseRafturai.hs SmallFile.hs SSL.hs
2         ghc --make HelloWorld -threaded -O3 -fwarn-unused-imports
3         ghc --make Implanted -threaded -O3 -fwarn-unused-imports
4         ghc --make ImplantedSmall -threaded -O3 -fwarn-unused-imports
5         ghc --make Multipart -threaded -O3 -fwarn-unused-imports
6         ghc --make SSL -threaded -O3 -fwarn-unused-imports
7
8 run: build
9         ./HelloWorld
10
11 clean:
12         rm -f HelloWorld Implanted MiseRafturai.hs ImplantedSmall SmallFile.hs Multipart SSL *.hi *.o
13
14 MiseRafturai.hs: mise-rafturai.html
15         lucu-implant-file -m MiseRafturai -o $@ $<
16
17 SmallFile.hs: small-file.txt
18         lucu-implant-file -m SmallFile -o $@ $<
19
20 .PHONY: build run clean