awl/Makefile
Sam Therapy dfc8a5431a
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
add phonyness back to BSD makefile
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-09-02 01:24:21 +02:00

14 lines
411 B
Makefile

# SPDX-License-Identifier: BSD-3-Clause
# BSD/POSIX makefile
include template.mk
EXE := $(PROG)
## install: installs awl
.PHONY: install
install: all
install -Dm755 $(PROG) $(DESTDIR)$(PREFIX)/$(BIN)/$(PROG)
install -Dm644 doc/$(PROG).1 $(DESTDIR)$(MAN)/man1/$(PROG).1
# completions need to go in one specific place :)
install -Dm644 completions/zsh.zsh $(DESTDIR)/usr/$(SHARE)/zsh/site-functions/_$(PROG)