aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9066073..8018997 100644
--- a/Makefile
+++ b/Makefile
@@ -17,16 +17,12 @@ clean:
rm -f ${BIN} ${OBJ}
install: all
- install -Dm755 lib.sh ${DESTDIR}${BINDIR}/cpt-lib
- install -Dm755 cpt ${DESTDIR}${BINDIR}/cpt
for bin in tools/* ${BIN} contrib/*; do \
install -Dm755 $${bin} ${DESTDIR}${BINDIR}/$${bin##*/}; done
for man in man/*.1; do install -Dm644 $${man} ${DESTDIR}${MAN1}/$${man##*/}; done
for doc in doc/*; do install -Dm644 $${doc} ${DESTDIR}${CPTDOC}/$${doc##*/}; done
uninstall:
- rm -f ${DESTDIR}${BINDIR}/cpt \
- ${DESTDIR}${BINDIR}/cpt-lib
for bin in ${BIN} tools/* contrib/*; do \
rm -f ${DESTDIR}${BINDIR}/$${bin##*/}; done
for man in man/*; do rm -f ${DESTDIR}${MAN1}/$${man##*/}; done