summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-05-07 04:09:19 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-05-07 04:09:19 -0400
commit8bcecd8ab592e67ade9cd728503581d5a84ca583 (patch)
tree4d550a9ca8b2b19af6d66b99233e0ecde4543df9 /Makefile
parentbe6362d05c9563b8085eba2b990a145101e9c99f (diff)
lots of docs and examples
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c70b01c..7ba1cb4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
# This Makefile is used by the developer. It is not needed in any way to build
# a checkout of the XGB repository.
+# It will be useful, however, if you are hacking at the code generator.
XPROTO=/usr/share/xcb
@@ -20,3 +21,8 @@ test:
bench:
go test -run 'nomatch' -bench '.*' -cpu 1,2,6
+gofmt:
+ gofmt -w *.go xgbgen/*.go examples/*.go examples/*/*.go
+ colcheck xgbgen/*.go examples/*.go examples/*/*.go \
+ auth.go conn.go cookie.go doc.go xgb.go xgb_help.go xgb_test.go
+