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

19 lines
352 B
Makefile

6 years ago
all:
@echo "no default"
run:
6 years ago
go run main.go
6 years ago
6 years ago
# http://macappstore.org/upx
6 years ago
build: clean
6 years ago
env GOARCH=amd64 go build -ldflags "-s -w" -o bin/cointop64 && upx bin/cointop64 && \
env GOARCH=386 go build -ldflags "-s -w" -o bin/cointop32 && upx bin/cointop32
6 years ago
clean:
6 years ago
go clean && \
rm -f bin/cointop64 && \
rm -f bin/cointop32
6 years ago
test:
@echo "no tests"