mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
17 lines
327 B
Makefile
17 lines
327 B
Makefile
release:
|
|
@echo "** Releasing version $(VERSION)..."
|
|
@echo "** Building..."
|
|
@$(MAKE) build
|
|
@echo "** Tagging and pushing..."
|
|
@git tag -a $(VERSION)
|
|
@git push --tags
|
|
.PHONY: release
|
|
|
|
build:
|
|
@gox -os="linux darwin windows openbsd" -output="dnote_{{.OS}}_{{.Arch}}" ./...
|
|
.PHONY: build
|
|
|
|
clean:
|
|
@git clean -f
|
|
.PHONY: clean
|
|
|