diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-01-09 20:21:43 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-01-11 23:33:26 -0700 |
commit | 1dcc029b2d25dc2d337de00262dfedecb7aa7fd1 (patch) | |
tree | 53e2f9353dd6abb5b40806cdf95f07d9943c6301 | |
parent | be6a105ec070d26c9af6c67798bb81bcd06ad17c (diff) |
fixup! Build the full matrix of CMAKE_BUILD_TYPE
-rw-r--r-- | GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index 86008a0..571a30a 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -74,12 +74,12 @@ $(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/build)): build/% .PHONY: $(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/build)) check: build - $(MAKE) -j1 -k $(foreach t,$(build-types),$(foreach p,$(platforms),build/$p-$t/check)) + $(MAKE) -j1 -k $(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/check)) .PHONY: check -$(foreach t,$(build-types),$(foreach p,$(platforms),build/$p-$t/check)): build/%/check: build/%/Makefile +$(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/check)): build/%/check: build/%/Makefile CTEST_OUTPUT_ON_FAILURE=1 $(MAKE) -C $(<D) test -.PHONY: $(foreach t,$(build-types),$(foreach p,$(platforms),build/$p-$t/check)) +.PHONY: $(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/check)) # `lint` and `format` ########################################################## |