10 lines
183 B
Makefile
10 lines
183 B
Makefile
![]() |
ROOTDIR = $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
||
|
PREFIX ?= /usr
|
||
|
DESTDIR ?= $(PREFIX)/bin
|
||
|
|
||
|
install:
|
||
|
cp -a $(ROOTDIR)/chin.sh $(DESTDIR)/chin
|
||
|
|
||
|
uninstall:
|
||
|
rm $(DESTDIR)/chin
|