awl/mkfile
Sam Therapy 7314122951
All checks were successful
continuous-integration/drone/push Build is passing
more modular
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-08-31 02:48:57 +02:00

30 lines
421 B
Makefile

# SPDX-License-Identifier: BSD-3-Clause
# Plan 9 mkfile
GO = go
PROG = awl
CGO_ENABLED = 0
$PROG:
$GO build -ldflags="-s -w -X=main.version=PLAN9" -o $PROG .
install:
$GO install -ldflags="-s -w -X=main.version=PLAN9" .
cp doc/$PROG.1 /sys/man/1/$PROG
test:
$GO test -cover -coverprofile=coverage/coverage.out ./...
fmt:
gofmt -w -s .
vet:
$GO vet ./...
lint: fmt vet
clean:
$GO clean
nuke: clean