diff options
author | Case Duckworth | 2023-07-05 16:14:13 -0500 |
---|---|---|
committer | Case Duckworth | 2023-07-05 16:14:13 -0500 |
commit | 4a058e40b26c2b614ac68bad96a412809a7bac13 (patch) | |
tree | 61424936a7741c6acf59177afaf44a157a1b95f0 /Makefile | |
download | chicanery-4a058e40b26c2b614ac68bad96a412809a7bac13.tar.gz chicanery-4a058e40b26c2b614ac68bad96a412809a7bac13.zip |
Initial commit
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 | ||