diff options
author | Case Duckworth | 2023-03-29 23:45:11 -0500 |
---|---|---|
committer | Case Duckworth | 2023-03-29 23:45:11 -0500 |
commit | 0f4890de4d9b0117bca058c74bcc4b41ec696197 (patch) | |
tree | f67067ba7be45d41b68b82187bb7c233ca79f125 /Makefile | |
parent | Ready for testing (diff) | |
download | wikme-0f4890de4d9b0117bca058c74bcc4b41ec696197.tar.gz wikme-0f4890de4d9b0117bca058c74bcc4b41ec696197.zip |
Add README and Makefile
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)/$@ $< | ||