diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..38d0ce0 --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,13 @@ | |||
1 | # chicanery | ||
2 | ## this makefile exists only to ... make ... cleaning up easier, really. | ||
3 | |||
4 | .PHONY: build install clean | ||
5 | |||
6 | build: | ||
7 | chicken-install -n | ||
8 | |||
9 | install: | ||
10 | chicken-install | ||
11 | |||
12 | clean: | ||
13 | rm -f *.sh *.import.* *.inline *.link *.o *.so *.types | ||