14 lines
271 B
Makefile
14 lines
271 B
Makefile
|
.PHONY: build
|
||
|
|
||
|
# this is how the mirrors.wit.com debian package is created
|
||
|
|
||
|
all: build
|
||
|
|
||
|
build:
|
||
|
cp build control ~/go/src/golang.org/x/tools/
|
||
|
go-deb --auto --repo golang.org/x/tools
|
||
|
|
||
|
# use the ncurses gui (only kinda works still)
|
||
|
ncurses:
|
||
|
# go-deb --gui gocui --repo .
|