diff -r 2e8eeb919028 -r b538b70cbe51 sysmodellibs/sysmodelgen/test/deps/makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sysmodellibs/sysmodelgen/test/deps/makefile Thu Mar 11 18:20:56 2010 +0200 @@ -0,0 +1,17 @@ +DETAILS=component collection subblock block layer +NORMALDETAIL = $(foreach v,$(DETAILS),$(v)-normal.svg) +FIXEDDETAIL = $(foreach v,$(DETAILS),$(v)-fixed.svg) +STATICDETAIL = $(foreach v,$(DETAILS),$(v)-static.svg) + +all: $(NORMALDETAIL) $(FIXEDDETAIL) $(STATICDETAIL) + +%-normal.svg : model.ini + perl -S DrawSvg.pl -clean -o $@ -i model.ini -detail $* + +%-static.svg : model.ini + perl -S DrawSvg.pl -clean -o $@ -i model.ini -detail $* -static + +%-fixed.svg : model.ini + perl -S DrawSvg.pl -clean -o $@ -i model.ini -detail $* -detail-type fixed + +