gosuki/Makefile

19 lines
166 B
Makefile
Raw Normal View History

2018-05-27 15:55:35 +00:00
.PHONY: all run deps docs build
TARGET=gomark
all: build docs
2017-10-20 10:59:24 +00:00
run:
2017-10-20 11:00:17 +00:00
@go run *.go
2017-11-23 20:50:06 +00:00
deps:
go get
2018-05-27 15:55:35 +00:00
docs:
@godoc2md gomark > API.md
build:
@go build -o $TARGET