aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2020-07-24 14:04:47 +0000
committermerakor <cem@ckyln.com>2020-07-24 14:04:47 +0000
commitbe96172e98b7289b032e1a87f13259c560920996 (patch)
treead48e938c46db20cc177c2b8a82943824719fba2 /Makefile
parentb2b8c0ae3774cb9a854799d2aa0f77fa4101aa07 (diff)
downloadcpt-be96172e98b7289b032e1a87f13259c560920996.tar.gz
cpt: keep the file structure simpler
FossilOrigin-Name: b548c2cdb7abfada1c7527565e5a58b2de5bbb6d620682454828cee7ae15b5db
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