Sam Therapy
7314122951
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Sam Therapy <sam@samtherapy.net>
25 lines
No EOL
439 B
Makefile
25 lines
No EOL
439 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
include template.mk
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
EXE := $(PROG).exe
|
|
else
|
|
EXE := $(PROG)
|
|
|
|
endif
|
|
|
|
$(PROG): $(SOURCES)
|
|
$(GO) build -o $(EXE) $(GOFLAGS) .
|
|
|
|
## install: installs awl
|
|
ifeq ($(OS),Windows_NT)
|
|
install:
|
|
$(GO) install $(GOFLAGS) .
|
|
else
|
|
install: all
|
|
install -Dm755 $(PROG) $(DESTDIR)$(PREFIX)/$(BIN)/$(PROG)
|
|
install -Dm644 doc/$(PROG).1 $(DESTDIR)$(MAN)/man1/$(PROG).1
|
|
endif
|
|
|
|
.PHONY: install |