stagit

git site generator
Contents

Makefile: remove unused $SCRIPTS

Hiltjo Posthuma hiltjo@codemadness.org

commit: 5463555 parent: 741eb97
1 files changed, 5 insertions(+), 5 deletions(-)
MMakefile+5-5
M · Makefile +5, -5
 1@@ -38,7 +38,7 @@ all: ${BIN}
 2 dist:
 3 rm -rf
${NAME}-${VERSION}
 4 mkdir -p
${NAME}-${VERSION}
 5- cp -f ${MAN1} ${HDR} ${SCRIPTS} ${SRC} ${COMPATSRC} ${DOC} \
 6+ cp -f ${MAN1} ${HDR}
${SRC} ${COMPATSRC} ${DOC} \
 7 Makefile config.mk favicon.png logo.png style.css \
 8 example_create.sh
example_post-receive.sh \
 9 ${NAME}-${VERSION}
10@@ -61,8 +61,8 @@ clean:
11 install: all
12 # installing
executable files.
13 mkdir -p
${DESTDIR}${PREFIX}/bin
14- cp -f ${BIN} ${SCRIPTS} ${DESTDIR}${PREFIX}/bin
15- for f in ${BIN}
${SCRIPTS}; do chmod 755 ${DESTDIR}${PREFIX}/bin/$$f; done
16+ cp -f ${BIN}
${DESTDIR}${PREFIX}/bin
17+ for f in ${BIN}; do
chmod 755 ${DESTDIR}${PREFIX}/bin/$$f; done
18 # installing example files.
19 mkdir -p
${DESTDIR}${PREFIX}/share/${NAME}
20 cp -f style.css\
21@@ -78,8 +78,8 @@ install: all
22 for m in ${MAN1}; do chmod 644
${DESTDIR}${MANPREFIX}/man1/$$m; done
23
24 uninstall:
25- # removing executable files and scripts.
26- for f in ${BIN}
${SCRIPTS}; do rm -f ${DESTDIR}${PREFIX}/bin/$$f; done
27+ # removing executable
files.
28+ for f in ${BIN}; do
rm -f ${DESTDIR}${PREFIX}/bin/$$f; done
29 # removing example files.
30 rm -f \
31
${DESTDIR}${PREFIX}/share/${NAME}/style.css\