]> git.cworth.org Git - glaze/blob - specs/Makefile
Add egl definitions and related buildsupport.
[glaze] / specs / Makefile
1 TARGETS=gl.def glx.def egl.def
2
3 all: $(TARGETS)
4
5 %.def: %.xml
6         ./xml2def $? > $@
7
8 glx.def: glx.xml
9         ./xml2def $? | grep -v GetProcAddress > $@
10
11 egl.def: egl.xml
12         ./xml2def $? | grep -v eglGetProcAddress > $@
13
14 clean:
15         rm *.def