aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCamil Staps2017-07-17 21:48:37 +0000
committerCamil Staps2017-07-17 21:48:37 +0000
commit9f95fa78463d7e6b047485bdce28f1a970a45fd2 (patch)
treef0daf60bcfec390bf828178d2c75b486447ad708 /Makefile
Initial commit
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: