You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/Makefile

12 lines
239 B
Makefile

all:
@echo "no default"
run:
go run cointop.go keybindings.go navigation.go sort.go layout.go status.go chart.go table.go
build: clean
go build -ldflags "-s -w" -o bin/cointop && upx bin/cointop
clean:
go clean && rm -f bin/cointop