diff options
-rw-r--r-- | .fossil-settings/ignore-glob | 1 | ||||
-rw-r--r-- | Makefile | 6 | ||||
l--------- | tests/etc/cpt-hook | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/.fossil-settings/ignore-glob b/.fossil-settings/ignore-glob index 5dcc425..d4cc917 100644 --- a/.fossil-settings/ignore-glob +++ b/.fossil-settings/ignore-glob @@ -1,4 +1,5 @@ src/cpt-lib +tests/etc/cpt-hook *#*# *~ @@ -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 diff --git a/tests/etc/cpt-hook b/tests/etc/cpt-hook deleted file mode 120000 index e95622a..0000000 --- a/tests/etc/cpt-hook +++ /dev/null @@ -1 +0,0 @@ -../hook-file
\ No newline at end of file |