You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

21 lines
408 B

# TODO:
# Incremental compilation impossible without redundantly specifying
# files that will be generated in the makefile
TARGET_XML+=interface_example1.xml
.PHONY: all xml clean
all: c_interface $(TARGET_XML)
c_interface:
YML_PATH=../idl yml2proc -y ../lm-c99/ig-c99.ysl2 interface_example1.yml2
xml: $(TARGET_XML)
%.xml: %.yml2
YML_PATH=../idl yml2proc -P $< -o $@
clean:
rm -f *.xml *.xsl *.h