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.
10 lines
167 B
Makefile
10 lines
167 B
Makefile
C_SOURCES := main.c
|
|
|
|
all: secondprog
|
|
|
|
include Makefile.rules
|
|
|
|
secondprog: secondprog.cpp
|
|
"$(MAKE)" -f $(MAKEFILE_RULES) \
|
|
CXX_SOURCES=secondprog.cpp EXE=secondprog
|