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