plcopen/Makefile
changeset 1353 fc7aab64589b
child 1936 b85b13b1c2ec
--- /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