dnote/pkg/cli/Makefile
Sung Won Cho 23a511dbe0
Improve package structure (#207)
* Improve package structure

* Set up travis
2019-06-25 19:20:19 +10:00

12 lines
175 B
Makefile

all:
./scripts/build.sh $(VERSION)
.PHONY: all
release:
./scripts/build.sh $(VERSION)
./scripts/release.sh $(VERSION)
.PHONY: release
clean:
@git clean -f
.PHONY: clean