]> gitweb @ CieloNegro.org - Lucu.git/blob - examples/Makefile
Makefiles
[Lucu.git] / examples / Makefile
1 build:
2         ghc --make HelloWorld -threaded -fglasgow-exts -O3
3
4 run: build
5         ./HelloWorld
6
7 clean:
8         rm -f HelloWorld *.hi *.o
9
10 .PHONY: build run clean