summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-04-28 23:25:57 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-04-28 23:25:57 -0400
commit7d160ecc2dc688f032ef9e53a8a529821f445df9 (patch)
tree57f6ca702cae2481e5b2a71c392b3d0c6dd5244f /Makefile
initial commit. not currently in a working state.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..041d20c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,19 @@
+XPROTO=/usr/share/xcb
+all: xproto xinerama
+
+xproto:
+ python2 go_client.py $(XPROTO)/xproto.xml
+ gofmt -w xproto.go
+
+xinerama:
+ python2 go_client.py $(XPROTO)/xinerama.xml
+ gofmt -w xinerama.go
+
+randr:
+ python2 go_client.py $(XPROTO)/randr.xml
+ gofmt -w randr.go
+
+render:
+ python2 go_client.py $(XPROTO)/render.xml
+ gofmt -w render.go
+