mirror of
https://github.com/miguelmota/cointop
synced 2024-11-14 18:12:57 +00:00
13 lines
268 B
Makefile
13 lines
268 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
|
|
|
|
# http://macappstore.org/upx
|
|
build: clean
|
|
go build -ldflags "-s -w" -o bin/cointop && upx bin/cointop
|
|
|
|
clean:
|
|
go clean && rm -f bin/cointop
|