plcopen/Makefile
author Edouard Tisserant
Mon, 02 Feb 2015 16:51:35 +0100
changeset 1435 291a17b755d1
parent 1353 fc7aab64589b
child 1936 b85b13b1c2ec
permissions -rw-r--r--
Fixed python runtime trace thread auto suspend. Now suspends after 3 seconds when no trace is requested
#! 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)