X-Git-Url: https://git.xandkar.net/?p=cellular-automata.git;a=blobdiff_plain;f=life%2F006%2FMakefile;fp=life%2F006%2FMakefile;h=67af1eb60f29ef8af70e941c1dac21d0d5bac8d4;hp=0000000000000000000000000000000000000000;hb=e16b8b54be348430aef022ac39696df272100cd7;hpb=3dade747beb29d8a3f8dfb14c4afe54efc06d2ae diff --git a/life/006/Makefile b/life/006/Makefile new file mode 100644 index 0000000..67af1eb --- /dev/null +++ b/life/006/Makefile @@ -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