Skip to content
Prev Previous commit
feat: allow parallel running of some make check sub-targets
  • Loading branch information
janl committed Dec 6, 2025
commit 85709990f2c806d9abe686f00827c9ff8bfe6cbb
16 changes: 5 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,18 +155,12 @@ escriptize: couch-core
# Testing
################################################################################


.PHONY: check
CHECKS="xref elixir eunit elixir-search weatherreport-test nouveau-test"
.PHONY: check $(CHECKS)
# target: check - Test everything
check: ulimit -n 20480
check: all
@$(MAKE) xref
@$(MAKE) eunit
@$(MAKE) mango-test
@$(MAKE) elixir
@$(MAKE) elixir-search
@$(MAKE) weatherreport-test
@$(MAKE) nouveau-test
check: all $(CHECKS)
@${MAKE} mango-test
@${MAKE} nouveau-test

ifdef apps
SUBDIRS = $(apps)
Expand Down