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
197 B
Makefile
11 lines
197 B
Makefile
LD_EXTRAS := -L. -lload_a
|
|
CXX_SOURCES := main.cpp
|
|
|
|
a.out: libload_a
|
|
|
|
include Makefile.rules
|
|
|
|
libload_a:
|
|
"$(MAKE)" -f $(MAKEFILE_RULES) \
|
|
DYLIB_ONLY=YES DYLIB_NAME=load_a DYLIB_CXX_SOURCES=a.cpp
|