diff options
| author | merakor <cem@ckyln.com> | 2020-07-24 14:04:47 +0000 | 
|---|---|---|
| committer | merakor <cem@ckyln.com> | 2020-07-24 14:04:47 +0000 | 
| commit | be96172e98b7289b032e1a87f13259c560920996 (patch) | |
| tree | ad48e938c46db20cc177c2b8a82943824719fba2 | |
| parent | b2b8c0ae3774cb9a854799d2aa0f77fa4101aa07 (diff) | |
| download | cpt-be96172e98b7289b032e1a87f13259c560920996.tar.gz | |
cpt: keep the file structure simpler
FossilOrigin-Name: b548c2cdb7abfada1c7527565e5a58b2de5bbb6d620682454828cee7ae15b5db
| -rw-r--r-- | Makefile | 4 | ||||
| -rwxr-xr-x | tools/cpt (renamed from cpt) | 0 | ||||
| -rw-r--r-- | tools/cpt-lib (renamed from lib.sh) | 0 | 
3 files changed, 0 insertions, 4 deletions
| @@ -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 | 
