2012-05-06 09:06:27 +02:00
|
|
|
# This Makefile is used by the developer. It is not needed in any way to build
|
|
|
|
# a checkout of the XGB repository.
|
2012-04-29 05:25:57 +02:00
|
|
|
|
2012-05-06 09:06:27 +02:00
|
|
|
XPROTO=/usr/share/xcb
|
2012-04-29 05:25:57 +02:00
|
|
|
|
2012-05-06 09:06:27 +02:00
|
|
|
# All of the XML files in my /usr/share/xcb directory EXCEPT XKB. -_-
|
|
|
|
all: bigreq.xml composite.xml damage.xml dpms.xml dri2.xml \
|
|
|
|
ge.xml glx.xml randr.xml record.xml render.xml res.xml \
|
|
|
|
screensaver.xml shape.xml shm.xml sync.xml xc_misc.xml \
|
|
|
|
xevie.xml xf86dri.xml xf86vidmode.xml xfixes.xml xinerama.xml \
|
|
|
|
xinput.xml xprint.xml xproto.xml xselinux.xml xtest.xml \
|
|
|
|
xvmc.xml xv.xml
|
2012-04-29 05:25:57 +02:00
|
|
|
|
2012-05-06 09:06:27 +02:00
|
|
|
%.xml:
|
|
|
|
xgbgen/xgbgen --proto-path $(XPROTO) $(XPROTO)/$*.xml > auto_$*.go
|
2012-04-29 05:25:57 +02:00
|
|
|
|