plcopen/Makefile
author Edouard Tisserant
Fri, 02 Feb 2018 16:24:56 +0100
changeset 1924 fc67b02d44e0
parent 1353 fc7aab64589b
child 1936 b85b13b1c2ec
permissions -rw-r--r--
More changes in Launcher. Modules to be loaded in the background are given in a list, and assigned as object attributes. Also splitted CreateUI into CloseSplashScreen and CreatueUI.
#! 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)