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