about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
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