12 lines
150 B
Makefile
12 lines
150 B
Makefile
.POSIX:
|
|
.SILENT:
|
|
|
|
PREFIX = $(DESTDIR)/usr/local
|
|
|
|
.PHONY: install
|
|
install:
|
|
./scripts/install.sh
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
./scripts/uninstall.sh
|