From: arg@10ksloc.org Date: Thu, 20 Jul 2006 07:48:49 +0000 (+0200) Subject: added chmod as well to Makefiles X-Git-Url: https://git.armaanb.net/?p=sic.git;a=commitdiff_plain;h=39d4f2a443af98a16ec943ed9009b8f8ca03cc73 added chmod as well to Makefiles --- diff --git a/Makefile b/Makefile index 9c11042..3f6b3e3 100644 --- a/Makefile +++ b/Makefile @@ -39,9 +39,15 @@ sic: ${OBJ} install: all @mkdir -p ${DESTDIR}${PREFIX}/bin @cp -f ${BIN} ${DESTDIR}${PREFIX}/bin + @for i in ${BIN}; do \ + chmod 755 ${DESTDIR}${PREFIX}/bin/`basename $$i`; \ + done @echo installed executable files to ${DESTDIR}${PREFIX}/bin @mkdir -p ${DESTDIR}${MANPREFIX}/man1 @cp -f ${MAN1} ${DESTDIR}${MANPREFIX}/man1 + @for i in ${MAN1}; do \ + chmod 444 ${DESTDIR}${MANPREFIX}/man1/`basename $$i`; \ + done @echo installed manual pages to ${DESTDIR}${MANPREFIX}/man1 uninstall: