beremiz
Clone
Summary
Browse
Changes
Graph
Fixed bug Drag'n drop variables from left panel to debug panel disabled
2013-10-17, Laurent Bessard
9bd4c783c98d
Fixed bug Drag'n drop variables from left panel to debug panel disabled
#! 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)