aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2012-04-28 11:59:32 +0200
committerChristoph Lohmann <20h@r-36.net>2012-04-28 11:59:32 +0200
commite54347c4816f96226113d0fddecff41502b22d1f (patch)
treea453b5f6b9d1a4a2aec19fa6a9cce9ee6d8c9248 /Makefile
parent4671d8270e28dca692eec5cef1bb533a423cf1dc (diff)
downloadnldev-e54347c4816f96226113d0fddecff41502b22d1f.tar.bz2
nldev-e54347c4816f96226113d0fddecff41502b22d1f.tar.xz
Adding a common startup script that supports logging.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d2acef7..6d9d289 100644
--- a/Makefile
+++ b/Makefile
@@ -41,6 +41,7 @@ install: all
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f ${NAME} ${DESTDIR}${PREFIX}/bin
+ @cp -f run_${NAME} ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/${NAME}
@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
@mkdir -p ${DESTDIR}${MANPREFIX}/man1
@@ -50,6 +51,7 @@ install: all
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/${NAME}
+ @rm -f ${DESTDIR}${PREFIX}/bin/run_${NAME}
@echo removing manual page from ${DESTDIR}${PREFIX}/man1
@rm -f ${DESTDIR}${MANPREFIX}/man1/${NAME}.1