From 9f95fa78463d7e6b047485bdce28f1a970a45fd2 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Mon, 17 Jul 2017 21:48:37 +0000 Subject: Initial commit --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5291f81 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +BIN:=sil +CLM:=clm +CLMFLAGS:=-nt -nr\ + -I $$CLEAN_HOME/lib/Generics\ + -I $$CLEAN_HOME/lib/Platform\ + -I ABCMachine + +.PHONY: all clean + +all: $(BIN) + +$(BIN): .FORCE + $(CLM) $(CLMFLAGS) $@ -o $@ + +clean: + $(RM) -r 'Clean System Files' $(BIN) + +.FORCE: -- cgit v1.2.3