diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..21b4479 --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,11 @@ | |||
1 | # wikme | ||
2 | |||
3 | PREFIX = /usr/bin | ||
4 | |||
5 | wikme: wikme.scm src/wikme.scm | ||
6 | csc -o $@ wikme.scm | ||
7 | |||
8 | .PHONY: install | ||
9 | |||
10 | install: wikme | ||
11 | install -Dt $(DESTDIR)$(PREFIX)/$@ $< | ||