aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCamil Staps2015-08-14 10:57:21 +0200
committerCamil Staps2015-08-14 10:57:21 +0200
commit3212e8a20013e5f431aa61f952c2745db64e27a5 (patch)
tree3b1b405d79fa888e34fd12c2d3da9d4db3f68164 /Makefile
parentDrawingframe test (chap 5) (diff)
Makefile only run targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 04ebf15..bf46794 100644
--- a/Makefile
+++ b/Makefile
@@ -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