about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorCase Duckworth2022-09-07 23:11:42 -0500
committerCase Duckworth2022-09-07 23:11:42 -0500
commit875ac7589afcb752382f0c3776de63d1088e44fe (patch)
tree76044827f6abba32209e35751ae9bcf44c00fe1c /Makefile
parentInitial commit (diff)
downloadpotato-875ac7589afcb752382f0c3776de63d1088e44fe.tar.gz
potato-875ac7589afcb752382f0c3776de63d1088e44fe.zip
Add COPYING, Makefile, README.md
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b9c5dcd --- /dev/null +++ b/Makefile
@@ -0,0 +1,17 @@
1# potato
2
3DESTDIR =
4PREFIX = /usr/local
5
6CSC = csc
7
8potato: potato.scm
9 $(CSC) -o $@ $<
10
11.PHONY: install
12install: potato
13 install -Dt $(DESTDIR)$(PREFIX)/bin/potato
14
15.PHONY: uninstall
16uninstall:
17 rm -f $(DESTDIR)$(PREFIX)/bin/potato