aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCamil Staps2015-08-19 11:07:55 +0200
committerCamil Staps2015-08-19 11:07:55 +0200
commit6b66ad843b6798d1a1910760c18d567f83d06bc8 (patch)
treee38aed893f4ef2453e0c3e3e440457bdcfeda683 /Makefile
parentLicense, readme (diff)
Setting up
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3b0f432..4f0d2dd 100644
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,8 @@ CLM_LIBS=$$(for l in $$(pkg-config --libs gtk+-2.0); do echo -n "-l $$l "; done)
CLM_INC=-I $(OBJECTIO) -I $(OBJECTIOLINUX) -I $(CLEANLIB)/StdLib
CLM_OPTS=-tst
+APP_OPTS=-h 512M
+
ICL=$(wildcard *.icl)
EXE=$(patsubst %.icl,%,$(ICL))
@@ -21,7 +23,7 @@ $(EXE): % : %.icl | copy
$(CLM) $(CLM_LIBS) $(CLM_INC) $(CLM_OPTS) $@ -o $@
run: $(filter $(EXE), $(MAKECMDGOALS))
- @for i in $^; do ./$$i -h 512M; done
+ @for i in $^; do ./$$i $(APP_OPTS); done
rebuild: clean all