diff options
author | Camil Staps | 2017-07-17 21:48:37 +0000 |
---|---|---|
committer | Camil Staps | 2017-07-17 21:48:37 +0000 |
commit | 9f95fa78463d7e6b047485bdce28f1a970a45fd2 (patch) | |
tree | f0daf60bcfec390bf828178d2c75b486447ad708 /Makefile |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
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: |