diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bd8289d --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,18 @@ | |||
1 | # boudin | ||
2 | |||
3 | .PHONY: build | ||
4 | build: | ||
5 | chicken-install -n | ||
6 | |||
7 | .PHONY: install | ||
8 | install: | ||
9 | chicken-install | ||
10 | |||
11 | .PHONY: test | ||
12 | test: build | ||
13 | cd test; ../boudin *.html && (cd out; python -m http.server) | ||
14 | |||
15 | .PHONY: clean | ||
16 | clean: | ||
17 | rm -f boudin | ||
18 | rm -f *.build.sh *.install.sh *.import.scm *.link *.so *.o | ||