Implement vanilla GoL in TypeScript
[cellular-automata.git] / life / 006 / Makefile
diff --git a/life/006/Makefile b/life/006/Makefile
new file mode 100644 (file)
index 0000000..67af1eb
--- /dev/null
@@ -0,0 +1,22 @@
+.PHONY: deps build_and_run build run clean clean_deps clean_all
+
+build_and_run: build run
+
+all: clean_all deps build_and_run
+
+deps:
+       @typings install
+
+build:
+       @tsc
+
+run:
+       @./life
+
+clean:
+       @rm life.js
+
+clean_deps:
+       @rm -rf ./typings
+
+clean_all: clean clean_deps
This page took 0.01885 seconds and 4 git commands to generate.