14 lines
296 B
Makefile
14 lines
296 B
Makefile
PREFIX = /usr
|
|
|
|
# set by mtsc Makefile
|
|
VERSION = 0
|
|
|
|
install:
|
|
install -Dm755 "common.sh" $(DESTDIR)/$(PREFIX)/lib/mtsc-common.sh
|
|
sed 's/MTSC_VERSION_HOLDER/$(VERSION)/g' -i $(DESTDIR)/$(PREFIX)/lib/mtsc-common.sh
|
|
|
|
uninstall:
|
|
rm $(DESTDIR)/$(PREFIX)/lib/mtsc-common.sh
|
|
|
|
.PHONY: install uninstall
|