pEpEngine/api/Makefile

19 lines
273 B
Makefile
Raw Normal View History

2019-02-08 21:51:42 +01:00
all: pEp.xml basic_api.h
2019-02-08 21:51:42 +01:00
YML2=$(wildcard *.yml2)
YSL2=$(wildcard *.ysl2)
%.xml: %.yml2 $(YML2) $(YSL2)
yml2proc -P $< -o $@
2019-02-08 17:33:38 +01:00
%.xsl: %.ysl2
yml2proc -DP $< -o $@
2019-02-08 21:51:42 +01:00
%.h: $(YML2) $(YSL2)
yml2proc -y gen_c_header.ysl2 pEp.yml2
.PHONY: clean
clean:
2019-02-08 17:33:38 +01:00
rm -f *.xml *.xsl *.h