2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-05 00:00:14 +00:00
cointop/Makefile

63 lines
1.1 KiB
Makefile
Raw Normal View History

all:
@echo "no default"
run:
debug:
DEBUG=1 go run main.go
# http://macappstore.org/upx
2018-04-27 18:32:26 +00:00
build/mac: clean
env GOARCH=amd64 go build -ldflags "-s -w" -o bin/macos/cointop && upx bin/macos/cointop
build/multiple: clean
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
clean:
go clean && \
2018-04-27 18:32:26 +00:00
rm -rf bin/
test:
go test ./...
2018-04-28 00:07:13 +00:00
cointop/test:
go run main.go -test
snap/clean:
snapcraft clean
2018-05-07 08:26:39 +00:00
rm cointop_*.snap
snap/stage:
snapcraft stage
snap/build: snap/clean snap/stage
snapcraft snap
snap/deploy:
snapcraft push cointop_*.snap --release stable
snap/remove:
snap remove cointop
2018-04-26 23:19:19 +00:00
2018-04-27 18:32:26 +00:00
brew/clean: brew/remove
brew cleanup --force cointop
brew prune
2018-04-26 23:19:19 +00:00
brew/remove:
2018-04-27 18:32:26 +00:00
brew uninstall --force cointop
2018-04-26 23:19:19 +00:00
brew/build: brew/remove
brew install --build-from-source cointop.rb
2018-04-27 18:32:26 +00:00
brew/audit:
brew audit --strict cointop.rb
2018-04-27 19:09:34 +00:00
git/rm/large:
java -jar bfg.jar --strip-blobs-bigger-than 200K .
git/repack:
git reflog expire --expire=now --all
git fsck --full --unreachable
git repack -A -d
git gc --aggressive --prune=now