diff options
author | Camil Staps | 2015-08-10 15:00:33 +0200 |
---|---|---|
committer | Camil Staps | 2015-08-10 15:00:33 +0200 |
commit | 0b809c979c773109ff09edd44618e38a4fb6ca50 (patch) | |
tree | 7a339894f48a23affb72da0b4cd2676f61d5098b /Makefile | |
parent | ObjectIO tests (diff) |
Make target & variable names
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -20,6 +20,9 @@ all: $(EXE) $(EXE): % : %.icl | copy $(CLM) $(CLM_LIBS) $(CLM_INC) $(CLM_OPTS) $@ -o $@ +run: $(filter-out run, $(MAKECMDGOALS)) + @for i in $^; do ./$$i; done + rebuild: clean all clean: @@ -28,3 +31,6 @@ clean: copy: mkdir -p "Clean System Files" cp $(OBJECTIOCDIR)/*.o "Clean System Files" + +.PHONY: all run rebuild clean copy + |