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-05-07 10:09:19 +02:00
|
|
|
# It will be useful, however, if you are hacking at the code generator.
|
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. -_-
|
2012-05-08 03:58:33 +02:00
|
|
|
all: build-xgbgen \
|
|
|
|
bigreq.xml composite.xml damage.xml dpms.xml dri2.xml \
|
2012-05-06 09:06:27 +02:00
|
|
|
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-08 03:58:33 +02:00
|
|
|
build-xgbgen:
|
|
|
|
(cd xgbgen && go build)
|
|
|
|
|
2012-05-10 23:01:42 +02:00
|
|
|
build-all: bigreq.b composite.b damage.b dpms.b dri2.b ge.b glx.b randr.b \
|
|
|
|
record.b render.b res.b screensaver.b shape.b shm.b sync.b xcmisc.b \
|
|
|
|
xevie.b xf86dri.b xf86vidmode.b xfixes.b xinerama.b xinput.b \
|
|
|
|
xprint.b xproto.b xselinux.b xtest.b xv.b xvmc.b
|
|
|
|
|
|
|
|
%.b:
|
|
|
|
(cd $* ; go build)
|
|
|
|
|
|
|
|
xc_misc.xml: build-xgbgen
|
|
|
|
mkdir -p xcmisc
|
|
|
|
xgbgen/xgbgen --proto-path $(XPROTO) $(XPROTO)/xc_misc.xml > xcmisc/xcmisc.go
|
|
|
|
|
|
|
|
%.xml: build-xgbgen
|
|
|
|
mkdir -p $*
|
|
|
|
xgbgen/xgbgen --proto-path $(XPROTO) $(XPROTO)/$*.xml > $*/$*.go
|
2012-04-29 05:25:57 +02:00
|
|
|
|
2012-05-07 07:00:45 +02:00
|
|
|
test:
|
2012-05-10 23:01:42 +02:00
|
|
|
(cd xproto ; go test)
|
2012-05-07 07:00:45 +02:00
|
|
|
|
|
|
|
bench:
|
2012-05-10 23:01:42 +02:00
|
|
|
(cd xproto ; go test -run 'nomatch' -bench '.*' -cpu 1,2,6)
|
2012-05-07 07:00:45 +02:00
|
|
|
|
2012-05-07 10:09:19 +02:00
|
|
|
gofmt:
|
|
|
|
gofmt -w *.go xgbgen/*.go examples/*.go examples/*/*.go
|
2012-05-10 23:01:42 +02:00
|
|
|
colcheck xgbgen/*.go examples/*.go examples/*/*.go xproto/xproto_test.go \
|
|
|
|
auth.go conn.go cookie.go doc.go xgb.go xgb_help.go
|
2012-05-07 10:09:19 +02:00
|
|
|
|