diff -r 9ec4ac8e2955 -r fc7aab64589b plcopen/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plcopen/Makefile Thu Oct 10 10:03:56 2013 +0200 @@ -0,0 +1,15 @@ +#! gmake + +yml := ../../yml2 +ysl2files := $(wildcard *.ysl2) +xsltfiles := $(patsubst %.ysl2, %.xslt, $(ysl2files)) + +all:$(xsltfiles) + +%.xslt: %.ysl2 + $(yml)/yml2c -I $(yml) $< -o $@.tmp + xmlstarlet fo $@.tmp > $@ + rm $@.tmp + +clean: + rm -f $(xsltfiles) \ No newline at end of file