Moved Life implementations into 'life' directory.
[cellular-automata.git] / life / 002 / Makefile
diff --git a/life/002/Makefile b/life/002/Makefile
new file mode 100644 (file)
index 0000000..54a1aee
--- /dev/null
@@ -0,0 +1,18 @@
+COMPILER="ocamlopt"
+OBJ_EXT="cmx"
+
+
+compile:
+       @mkdir -p bin
+       @ocamlfind $(COMPILER) -linkpkg -package unix \
+           -o bin/life \
+              src/life.ml
+
+
+clean:
+       @rm -rf bin
+       @find ./src \
+               -name \*.o \
+           -or -name \*.cmi \
+           -or -name \*.$(OBJ_EXT) \
+           | xargs rm -f
This page took 0.017804 seconds and 4 git commands to generate.