about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
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
3PREFIX = /usr/bin
4
5wikme: wikme.scm src/wikme.scm
6 csc -o $@ wikme.scm
7
8.PHONY: install
9
10install: wikme
11 install -Dt $(DESTDIR)$(PREFIX)/$@ $<