diff options
author | Camil Staps | 2015-08-14 10:57:21 +0200 |
---|---|---|
committer | Camil Staps | 2015-08-14 10:57:21 +0200 |
commit | 3212e8a20013e5f431aa61f952c2745db64e27a5 (patch) | |
tree | 3b1b405d79fa888e34fd12c2d3da9d4db3f68164 /Makefile | |
parent | Drawingframe test (chap 5) (diff) |
Makefile only run targets
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,8 +20,8 @@ all: $(EXE) $(EXE): % : %.icl | copy $(CLM) $(CLM_LIBS) $(CLM_INC) $(CLM_OPTS) $@ -o $@ -run: $(filter-out run, $(MAKECMDGOALS)) - @for i in $^; do ./$$i; done +run: $(filter $(EXE), $(MAKECMDGOALS)) + @for i in $^; do ./$$i -h 512M; done rebuild: clean all |