X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/dba23062bad40afb1a90f60b6897cf9e1ca5035b..4688ad181da14be36e034918580ec0ce5968ffdb:/Makefile diff --git a/Makefile b/Makefile index 3433894..da0d71c 100644 --- a/Makefile +++ b/Makefile @@ -8,10 +8,10 @@ OBJ = ${SRC:.c=.o} MAN1 = dwm.1 BIN = dwm -all: config dwm +all: options dwm @echo finished -config: +options: @echo dwm build options: @echo "LIBS = ${LIBS}" @echo "CFLAGS = ${CFLAGS}" @@ -41,9 +41,15 @@ dist: clean 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: