Stefan Gränitz 3ef630ac33
[lldb] Support tests with nested make invocations on Windows 2/2 (#112360)
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.
2024-10-16 13:07:02 +02:00

12 lines
248 B
Makefile

C_SOURCES := main.c
LD_EXTRAS := -L. -Wl,-delay_library,libfoo.dylib
.PHONY: build-libfoo
all: build-libfoo a.out
include Makefile.rules
build-libfoo: foo.c
"$(MAKE)" -f $(MAKEFILE_RULES) \
DYLIB_C_SOURCES=foo.c DYLIB_NAME=foo DYLIB_ONLY=YES