aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
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: