gosuki/Makefile

20 lines
168 B
Makefile

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