lmr/makefile

10 lines
178 B
Makefile
Raw Normal View History

2020-11-25 07:32:47 +01:00
SRCDIR = $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
PREFIX ?= /usr
DESTDIR ?= $(PREFIX)/bin
install:
cp -a $(SRCDIR)/lmr.sh $(DESTDIR)/lmr
uninstall:
rm $(DESTDIR)/lmr