diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..48999db --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,15 @@ | |||
1 | # boudin : a small static site generator | ||
2 | |||
3 | DESTDIR = | ||
4 | PREFIX = $(DESTDIR)/usr | ||
5 | |||
6 | boudin: boudin.scm | ||
7 | chicken-install -n | ||
8 | |||
9 | .PHONY: install | ||
10 | install: | ||
11 | chicken-install | ||
12 | |||
13 | .PHONY: clean | ||
14 | clean: | ||
15 | rm -f *.build.sh *.install.sh | ||