about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorCase Duckworth2023-03-29 23:45:11 -0500
committerCase Duckworth2023-03-29 23:45:11 -0500
commit0f4890de4d9b0117bca058c74bcc4b41ec696197 (patch)
treef67067ba7be45d41b68b82187bb7c233ca79f125 /Makefile
parentReady for testing (diff)
downloadwikme-0f4890de4d9b0117bca058c74bcc4b41ec696197.tar.gz
wikme-0f4890de4d9b0117bca058c74bcc4b41ec696197.zip
Add README and Makefile
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)/$@ $<