Added makefile for generating xslt stylesheet from ysl2 files
authorLaurent Bessard
Thu, 10 Oct 2013 10:03:56 +0200
changeset 1353 fc7aab64589b
parent 1352 9ec4ac8e2955
child 1354 241c19ea80da
Added makefile for generating xslt stylesheet from ysl2 files
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