From c258fe7f2347f03bf7b0ab02ac1596c65a072c1e Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Thu, 8 Jun 2023 23:27:32 -0500 Subject: Add egg and makefile and program --- makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..ffa747a --- /dev/null +++ b/makefile @@ -0,0 +1,22 @@ +# CHICKEN-SCRATCH: here-doc templating for CHICKEN scheme +# (C) Case Duckworth +# License: BSD-3. See COPYING for details. + +PREFIX = /usr + +SOURCES = chicken-scratch.scm chicken-scratch.mod.scm + +chicken-scratch: $(SOURCES) + chicken-install -n + +.PHONY: install +install: chicken-scratch + install -Dt $(PREFIX)/bin $< + +.PHONY: chicken-install +chicken-install: chicken-scratch + chicken-install + +.PHONY: clean +clean: + rm -f *.link *.so *.o *.build.sh *.import.scm *.install.sh -- cgit 1.4.1-21-gabe81