Fixed wrong quote type.
[cellular-automata.git] / forest-fire / 001 / Makefile
1 COMPILER="ocamlopt"
2 OBJ_EXT="cmx"
3
4
5 compile:
6 @mkdir -p bin
7 @ocamlfind $(COMPILER) -linkpkg -package unix \
8 -o bin/forest_fire \
9 src/forest_fire.ml
10
11
12 clean:
13 @rm -rf bin
14 @find src \
15 -iname '*.o' \
16 -or -iname '*.cmi' \
17 -or -iname "*.$(OBJ_EXT)" \
18 | xargs rm
This page took 0.068986 seconds and 4 git commands to generate.