View online manual pages straight from the terminal.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
PROG=mantra
|
|
|
|
PREFIX = /usr/local/bin
|
|
|
|
install:
|
|
mkdir -p ${DESTDIR}${PREFIX}
|
|
install -m755 ${PROG} ${DESTDIR}${PREFIX}/${PROG}
|
|
|
|
uninstall:
|
|
rm -f ${DESTDIR}${PREFIX}/${PROG}
|
|
|
|
.PHONY: install uninstall
|
|
|