beremiz
Clone
Summary
Browse
Changes
Graph
clean-up: fix PEP8 E701 multiple statements on one line (colon)
2017-08-16, Andrey Skvortsov
08e4394ff4fb
clean-up: fix PEP8 E701 multiple statements on one line (colon)
#! 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)