d2/ci/release/template/Makefile

18 lines
317 B
Makefile
Raw Normal View History

2022-11-11 09:17:06 +00:00
.POSIX:
.SILENT:
.PHONY: all
all:
(. ./scripts/lib.sh && echoerr "You must provide a target of install or uninstall for this Makefile")
exit 1
2022-11-11 09:17:06 +00:00
PREFIX = $(DESTDIR)/usr/local
.PHONY: install
install:
2022-11-14 10:13:37 +00:00
PREFIX='$(PREFIX)' ./scripts/install.sh
2022-11-11 09:17:06 +00:00
.PHONY: uninstall
uninstall:
2022-11-14 10:13:37 +00:00
PREFIX='$(PREFIX)' ./scripts/uninstall.sh