2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-10 13:10:26 +00:00
cointop/Makefile
Miguel Mota a907f29789 without go
Former-commit-id: 4ef1ad9e72a4494b356268d6afffaf290e5de92b [formerly 4ef1ad9e72a4494b356268d6afffaf290e5de92b [formerly 6943d907360a38d05493ed6ffb013372622bdf37 [formerly c6f4481c1f]]]
Former-commit-id: 67405ded07d60e68fb6b49bfc8756df1d164513a
Former-commit-id: 2fa32a555b25301e362046e180268e7b4f9b0cd8 [formerly 59ce7e1e2462b2951f3454b9ad06e49c82e61099]
Former-commit-id: 27719689f33a1f97efbf74b893cba1e11ea90457
2018-03-31 01:42:25 -07:00

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