summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-02-26 15:54:31 -0700
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-02-26 16:10:28 -0700
commit0c365772122d8fe429eb2029b79b5b2f450fd27c (patch)
treec3297da65a0026d3fb3cee16df0b015f165f9c91 /GNUmakefile
parent1d097f65ade8ae6ef40966b8409952a9eb99ec25 (diff)
GNUmakefile: Don't set INNER=t for CMake
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 5f49647..65639e4 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -81,7 +81,7 @@ $(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/Makefile)): buil
mkdir -p $(@D) && cd $(@D) && cmake -DPICO_PLATFORM=$(firstword $(subst -, ,$*)) -DCMAKE_BUILD_TYPE=$(lastword $(subst -, ,$*)) ../..
$(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/build)): build/%/build: build/%/Makefile generate
- $(MAKE) -C $(<D) INNER=t
+ $(MAKE) -C $(<D)
.PHONY: $(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/build))
check: build
@@ -89,7 +89,7 @@ check: build
.PHONY: check
$(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/check)): build/%/check: build/%/Makefile
- CTEST_OUTPUT_ON_FAILURE=1 $(MAKE) -C $(<D) INNER=t test
+ CTEST_OUTPUT_ON_FAILURE=1 $(MAKE) -C $(<D) test
.PHONY: $(foreach t,$(build_types),$(foreach p,$(platforms),build/$p-$t/check))
# `lint` and `format` ##########################################################