Following up from https://github.com/llvm/llvm-project/pull/112342, we roll out the fix and quote nested `make` invocations in all API tests.
11 lines
156 B
Makefile
11 lines
156 B
Makefile
CXX_SOURCES := main.cpp test.cpp
|
|
|
|
all: dummy
|
|
|
|
include Makefile.rules
|
|
|
|
dummy: dummy.cpp
|
|
"$(MAKE)" -f $(MAKEFILE_RULES) \
|
|
CXX_SOURCES=dummy.cpp EXE=dummy
|
|
|