14 lines
199 B
Makefile
14 lines
199 B
Makefile
|
.PHONY: build
|
||
|
|
||
|
# this is how the mirrors.wit.com debian package is created
|
||
|
|
||
|
all: build
|
||
|
|
||
|
build:
|
||
|
go-deb --repo .
|
||
|
|
||
|
# use the ncurses gui (only kinda works still)
|
||
|
ncurses:
|
||
|
go-deb --gui gocui --repo .
|
||
|
|