diff options
author | merakor <cem@ckyln.com> | 2021-03-23 14:32:41 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2021-03-23 14:32:41 +0000 |
commit | 6bf775511658a8d1db300b97a155c3bbfe3f3bb1 (patch) | |
tree | d54b9de687369a4bb654268b316406bd28d90f73 /Makefile | |
parent | e44c7f66e73976c03973c62571b0690a3a61205d (diff) | |
download | cpt-6bf775511658a8d1db300b97a155c3bbfe3f3bb1.tar.gz |
tests: create symlink on 'make test' and remove on 'make clean'
FossilOrigin-Name: f4445dffca86814e9a87ebdad59af412f048e093a6854e71d761f94b69d97057
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -16,10 +16,13 @@ src/cpt-lib: src/cpt-lib.in -e "s|@DOCSTRING@|Call functions from the library|g" < src/cpt-lib.in > $@ chmod 755 $@ -test: all +test: all tests/etc/cpt-hook shellspec cd src; find . ../contrib -name 'cpt*' ! -name '*.*' -exec shellcheck -e 2119 -x -f gcc {} + +tests/etc/cpt-hook: + ln -s ../hook-file $@ + dist: docs/cpt.info mkdir "cpt-${VERSION}" cp -r ${DISTFILES} "cpt-${VERSION}" @@ -46,5 +49,6 @@ uninstall: clean: test "${DOCS}" != yes || ${MAKE} -C docs clean rm -rf src/cpt-lib "cpt-${VERSION}.tar.xz" coverage report + rm -f tests/etc/cpt-hook .PHONY: all dist clean install uninstall |