beremiz
Clone
Summary
Browse
Changes
Graph
add $(Beremiz installation)/mingw/bin in PATH on Windows platform
2016-10-24, Andrey Skvortsov
f526fd97a7b0
add $(Beremiz installation)/mingw/bin in PATH on Windows platform
This fixes issue if multiple gcc installation are found in user's
PATH. Now gcc from Beremiz is used by default.
#! 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)