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.
16 lines
282 B
Makefile
16 lines
282 B
Makefile
LD_EXTRAS := -L. -la -lb
|
|
CXX_SOURCES := main.cpp
|
|
|
|
a.out: liba libb
|
|
|
|
include Makefile.rules
|
|
|
|
liba:
|
|
"$(MAKE)" -f $(MAKEFILE_RULES) \
|
|
DYLIB_ONLY=YES DYLIB_NAME=a DYLIB_CXX_SOURCES=a.cpp
|
|
|
|
libb:
|
|
"$(MAKE)" -f $(MAKEFILE_RULES) \
|
|
DYLIB_ONLY=YES DYLIB_NAME=b DYLIB_CXX_SOURCES=b.cpp
|
|
|