gosuki/Makefile
2018-06-14 15:46:41 +02:00

20 lines
173 B
Makefile

.PHONY: all run deps docs build
TARGET=gomark
all: build docs
run:
@go run *.go
deps:
go get
docs:
@godoc2md gomark > API.md
build:
@go build -o $(TARGET) *.go