1TOP=../../../../..
2include $(TOP)/configs/current
3
4IDL=$(wildcard *.idl include/*.idl)
5IDL_H=$(IDL:.idl=.h)
6LD=$(CXX) $(CXXFLAGS)
7
8include ../../../Makefile.template
9
10idl: $(IDL_H)
11
12%.h: %.idl
13	widl -I../gd3dapi -I../d3dapi -I../w32api -U /dev/null -H $@ $^
14
15%.svg: %.dot
16	dot -Tsvg -o $@ $<
17
18%.pdf: %.dot
19	dot -Tpdf -o $@ $<
20