diff options
author | merakor <cem@ckyln.com> | 2021-07-27 12:20:28 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2021-07-27 12:20:28 +0000 |
commit | 95563d3a1893135d31e6f0df1d7e60acd2a547bb (patch) | |
tree | 22bda87380f20a077e6dc283d7d20cc83a5c626f /Makefile | |
parent | 3971c4865d7926c89f2913d30d42f26f34bbc904 (diff) | |
download | cpt-95563d3a1893135d31e6f0df1d7e60acd2a547bb.tar.gz |
cpt: add configure script
FossilOrigin-Name: 2d0418f9f5660ac4e46b70bf111ef29878a1ef9dd8af98b6b6ed16577dd93f5e
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -32,6 +32,10 @@ dist: docs/cpt.info install: all test "${DOCS}" != yes || ${MAKE} -C docs install + [ -f docs/cpt.info ] && \ + ${INSTALL_SH} -Dm644 docs/cpt.info -t ${DESTDIR}${INFODIR} + [ -f docs/cpt.txt ] && \ + ${INSTALL_SH} -Dm644 docs/cpt.txt -t ${DESTDIR}${DOCDIR} ${INSTALL_SH} -Dm755 -t ${DESTDIR}${BINDIR} ${BIN} ${INSTALL_SH} -Dm644 -t ${DESTDIR}${MAN1} man/*.1 for man in ${CONTRIB}; do \ @@ -40,14 +44,15 @@ install: all done uninstall: - test "${DOCS}" != yes || ${MAKE} -C docs uninstall for bin in ${BIN}; do \ rm -f ${DESTDIR}${BINDIR}/$${bin##*/}; done for man in man/*.1; do rm -f ${DESTDIR}${MAN1}/$${man##*/}; done for man in ${CONTRIB}; do rm -f ${DESTDIR}${MAN1}/$${man##*/}.1; done + rm -rf ${DESTDIR}${DOCDIR} + rm -f ${DESTDIR}${INFODIR}/cpt.info clean: - test "${DOCS}" != yes || ${MAKE} -C docs clean + ${MAKE} -C docs clean rm -rf src/cpt-lib "cpt-${VERSION}.tar.xz" coverage report rm -f tests/etc/cpt-hook |