Makefile: remove unused $SCRIPTS - stagit-gopher - A git gopher frontend. (mirror)
HTML git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR LICENSE
---
DIR commit 2fc39b9cc9f90f20a6ef3c725080af1a0d5bc413
DIR parent e46c746c435114ae3e7541ca93ffa7aacf4aaff3
HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Fri, 17 Nov 2017 16:08:28 +0100
Makefile: remove unused $SCRIPTS
Diffstat:
M Makefile | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
DIR diff --git a/Makefile b/Makefile
@@ -36,7 +36,7 @@ all: ${BIN}
dist:
rm -rf ${NAME}-${VERSION}
mkdir -p ${NAME}-${VERSION}
- cp -f ${MAN1} ${HDR} ${SCRIPTS} ${SRC} ${COMPATSRC} ${DOC} \
+ cp -f ${MAN1} ${HDR} ${SRC} ${COMPATSRC} ${DOC} \
Makefile config.mk \
example_create.sh example_post-receive.sh \
${NAME}-${VERSION}
@@ -59,8 +59,8 @@ clean:
install: all
# installing executable files.
mkdir -p ${DESTDIR}${PREFIX}/bin
- cp -f ${BIN} ${SCRIPTS} ${DESTDIR}${PREFIX}/bin
- for f in ${BIN} ${SCRIPTS}; do chmod 755 ${DESTDIR}${PREFIX}/bin/$$f; done
+ cp -f ${BIN} ${DESTDIR}${PREFIX}/bin
+ for f in ${BIN}; do chmod 755 ${DESTDIR}${PREFIX}/bin/$$f; done
# installing example files.
mkdir -p ${DESTDIR}${PREFIX}/share/${NAME}
cp -f example_create.sh\
@@ -73,8 +73,8 @@ install: all
for m in ${MAN1}; do chmod 644 ${DESTDIR}${MANPREFIX}/man1/$$m; done
uninstall:
- # removing executable files and scripts.
- for f in ${BIN} ${SCRIPTS}; do rm -f ${DESTDIR}${PREFIX}/bin/$$f; done
+ # removing executable files.
+ for f in ${BIN}; do rm -f ${DESTDIR}${PREFIX}/bin/$$f; done
# removing example files.
rm -f \
${DESTDIR}${PREFIX}/share/${NAME}/example_create.sh\