10 lines
178 B
Makefile
10 lines
178 B
Makefile
|
SRCDIR = $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
||
|
PREFIX ?= /usr
|
||
|
DESTDIR ?= $(PREFIX)/bin
|
||
|
|
||
|
install:
|
||
|
cp -a $(SRCDIR)/lmr.sh $(DESTDIR)/lmr
|
||
|
|
||
|
uninstall:
|
||
|
rm $(DESTDIR)/lmr
|