From 875ac7589afcb752382f0c3776de63d1088e44fe Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Wed, 7 Sep 2022 23:11:42 -0500 Subject: Add COPYING, Makefile, README.md --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b9c5dcd --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +# potato + +DESTDIR = +PREFIX = /usr/local + +CSC = csc + +potato: potato.scm + $(CSC) -o $@ $< + +.PHONY: install +install: potato + install -Dt $(DESTDIR)$(PREFIX)/bin/potato + +.PHONY: uninstall +uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/potato -- cgit 1.4.1-21-gabe81