dnote/Makefile
2017-04-07 15:42:25 +10:00

17 lines
328 B
Makefile

release:
@echo "** Releasing version $(VERSION)..."
@echo "** Building..."
@$(MAKE) build
@echo "** Tagging and pushing..."
@git tag add $(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