aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-10-04 21:24:20 -0700
committerJohn MacFarlane <[email protected]>2022-10-04 21:48:17 -0700
commit1f982ddf47e56ba302085e68c8913fbcde8feff3 (patch)
treee8bfb727bbedaacceb242a1f8ea49d39155fe0d4 /Makefile
parent875747f351a4df9238ac1e374f5eb3b722505f4d (diff)
Extend check-cabal to check all packages
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 97d7928be..b6216f1e1 100644
--- a/Makefile
+++ b/Makefile
@@ -53,8 +53,14 @@ check: fix_spacing check-cabal checkdocs ## prerelease checks
check-cabal: git-files.txt sdist-files.txt
@echo "Checking to see if all committed test/data files are in sdist."
diff -u $^
- cabal check
- cabal outdated
+ @for pkg in . pandoc-lua-engine pandoc-server pandoc-cli; \
+ do \
+ pushd $$pkg ; \
+ cabal check ; \
+ cabal outdated ; \
+ popd ; \
+ done
+
.PHONY: check-cabal
checkdocs: