# 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