sysmodellibs/sysmodelgen/test/deps/makefile
changeset 1 b538b70cbe51
equal deleted inserted replaced
0:2e8eeb919028 1:b538b70cbe51
       
     1 DETAILS=component collection subblock block layer
       
     2 NORMALDETAIL = $(foreach v,$(DETAILS),$(v)-normal.svg)
       
     3 FIXEDDETAIL = $(foreach v,$(DETAILS),$(v)-fixed.svg)
       
     4 STATICDETAIL = $(foreach v,$(DETAILS),$(v)-static.svg)
       
     5 
       
     6 all: $(NORMALDETAIL) $(FIXEDDETAIL) $(STATICDETAIL)
       
     7 
       
     8 %-normal.svg : model.ini
       
     9 	perl -S DrawSvg.pl -clean -o $@ -i model.ini -detail $*
       
    10 
       
    11 %-static.svg : model.ini
       
    12 	perl -S DrawSvg.pl -clean -o $@ -i model.ini -detail $* -static
       
    13 
       
    14 %-fixed.svg : model.ini
       
    15 	perl -S DrawSvg.pl -clean -o $@ -i model.ini -detail $* -detail-type fixed
       
    16 
       
    17