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

13 lines
190 B
Makefile

all:
@echo "no default"
run:
go run main.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