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.
9 lines
138 B
Makefile
9 lines
138 B
Makefile
C_SOURCES := main.c
|
|
USE_LIBDL := 1
|
|
|
|
other:
|
|
"$(MAKE)" -f $(MAKEFILE_RULES) C_SOURCES=other.c EXE=other
|
|
all: other
|
|
|
|
include Makefile.rules
|