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