12 lines
138 B
Makefile
12 lines
138 B
Makefile
|
.PHONY: build
|
||
|
|
||
|
all: build
|
||
|
|
||
|
build:
|
||
|
go-deb --repo .
|
||
|
|
||
|
# use the ncurses gui (only kinda works still)
|
||
|
ncurses:
|
||
|
go-deb --gui gocui --repo .
|
||
|
|