67af1eb60f29ef8af70e941c1dac21d0d5bac8d4
[cellular-automata.git] / life / 006 / Makefile
1 .PHONY: deps build_and_run build run clean clean_deps clean_all
2
3 build_and_run: build run
4
5 all: clean_all deps build_and_run
6
7 deps:
8 @typings install
9
10 build:
11 @tsc
12
13 run:
14 @./life
15
16 clean:
17 @rm life.js
18
19 clean_deps:
20 @rm -rf ./typings
21
22 clean_all: clean clean_deps
This page took 0.045388 seconds and 4 git commands to generate.