aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/BurntSushi/xgbutil/Makefile
blob: a510c83dd023caa22ea7d3b950dda3450b239fbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
all: callback.go types_auto.go gofmt

install:
	go install -p 6 . ./ewmh ./gopher ./icccm ./keybind ./motif ./mousebind \
		./xcursor ./xevent ./xgraphics ./xinerama ./xprop ./xrect ./xwindow

push:
	git push origin master
	git push github master

build-ex:
	find ./_examples/ -type d -wholename './_examples/[a-z]*' -print0 \
		| xargs -0 go build -p 6

gofmt:
	gofmt -w *.go */*.go _examples/*/*.go
	colcheck *.go */*.go _examples/*/*.go

callback.go:
	scripts/write-events callbacks > xevent/callback.go

types_auto.go:
	scripts/write-events evtypes > xevent/types_auto.go

tags:
	find ./ \( -name '*.go' -and -not -wholename './tests/*' -and -not -wholename './_examples/*' \) -print0 | xargs -0 gotags > TAGS

loc:
	find ./ -name '*.go' -and -not -wholename './tests*' -and -not -name '*keysymdef.go' -and -not -name '*gopher.go' -print | sort | xargs wc -l

ex-%:
	go run _examples/$*/main.go

gopherimg:
	go-bindata -f GopherPng -p gopher -i gopher/gophercolor-small.png -o gopher/gopher.go