awl/Makefile
Sam Therapy 5ad2cdf4ae
Add subnet
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-08-03 02:11:03 +02:00

14 lines
294 B
Makefile

# SPDX-License-Identifier: BSD-3-Clause
# BSD/POSIX makefile
include template.mk
$(PROG):
$(GO) build -o $(PROG) $(GOFLAGS) .
## install: installs awl and the manpage, RUN AS ROOT
install: all
install -m755 $(PROG) $(PREFIX)/$(BIN)
install -m644 doc/$(PROG).1 $(MAN)/man1
.PHONY: install