diff options
author | Camil Staps | 2015-08-19 11:07:55 +0200 |
---|---|---|
committer | Camil Staps | 2015-08-19 11:07:55 +0200 |
commit | 6b66ad843b6798d1a1910760c18d567f83d06bc8 (patch) | |
tree | e38aed893f4ef2453e0c3e3e440457bdcfeda683 /Makefile | |
parent | License, readme (diff) |
Setting up
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |