summaryrefslogtreecommitdiff
path: root/Makefile
blob: f6b797de9539799646a354f3d3f05e3429a0a56d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# git remote add github [email protected]:wit-go/gui-debugger.git

all: redomod
	@echo a 'gui' debugger using the gui

goimports:
	goimports -w *.go

redomod:
	rm -f go.*
	goimports -w *.go
	GO111MODULE= go mod init
	GO111MODULE= go mod tidy

github:
	git push -u github master
	git push -u github devel
	git push github --tags