plcopen/Makefile
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Mon, 24 Oct 2016 18:02:53 +0300
changeset 1549 f526fd97a7b0
parent 1353 fc7aab64589b
child 1936 b85b13b1c2ec
permissions -rw-r--r--
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)