summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-08-28 14:52:13 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-08-28 14:55:36 -0400
commitf6940f3d5a7732e6e289a772ca2c2f5915f2ce75 (patch)
tree57a5b8e6a0268bb5e5bcfb30effb341e20668908
parent07ae98906dbb0caaac2f758d72e88dd0975b2a81 (diff)
downloadbfs-f6940f3d5a7732e6e289a772ca2c2f5915f2ce75.tar.xz
build: Add check-{install,man} to distcheck
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e18e3e1..8662018 100644
--- a/Makefile
+++ b/Makefile
@@ -159,6 +159,8 @@ distcheck:
@+test "$$(uname)" = FreeBSD || ${MAKE} distcheck-tsan
@+test "$$(uname)-$$(uname -m)" != Linux-x86_64 || ${MAKE} distcheck-m32
@+${MAKE} distcheck-release
+ @+${MAKE} -C distcheck-release check-install
+ @+test "$$(uname)" != Linux || ${MAKE} check-man
.PHONY: distcheck
# Per-distcheck configuration
@@ -229,6 +231,6 @@ clean::
# Clean everything, including generated files
distclean: clean
- ${MSG} "[ RM ] gen" \
+ ${MSG} "[ RM ] gen distcheck-*" \
${RM} -r gen ${DISTCHECKS}
.PHONY: distclean