plcopen/Makefile
author dporopat <denis.poropat@smarteh.si>
Wed, 11 Apr 2018 10:53:48 +0200
branch#2486
changeset 2199 8fd73c6c8aa9
parent 1936 b85b13b1c2ec
child 2627 3ba6a2d26507
permissions -rw-r--r--
#2486 Fix if protocol, register options are not present in wapmconf.json file.
#! gmake

yml := ../../yml2
ysl2files := $(wildcard *.ysl2)
xsltfiles := $(patsubst %.ysl2, %.xslt, $(ysl2files))

all:$(xsltfiles)

%.xslt: %.ysl2 yslt_noindent.yml2
	$(yml)/yml2c -I $(yml) $< -o $@.tmp
	xmlstarlet fo $@.tmp > $@
	rm $@.tmp
	
clean:
	rm -f $(xsltfiles)