gosuki/Makefile

26 lines
251 B
Makefile

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