File tree Expand file tree Collapse file tree 30 files changed +54
-54
lines changed
breakpoint/break_in_loaded_dylib
stop-on-sharedlibrary-load
tail_call_frames/cross_dso
target-new-solib-notifications
macCatalystAppMacOSFramework
lldb-server/libraries-svr4 Expand file tree Collapse file tree 30 files changed +54
-54
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ all: dummy
55include Makefile.rules
66
77dummy : dummy.cpp
8- $(MAKE ) -f $(MAKEFILE_RULES ) \
8+ " $( MAKE) " -f $(MAKEFILE_RULES ) \
99 CXX_SOURCES=dummy.cpp EXE=dummy
1010
Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ a.out: libdylib.dylib
99include Makefile.rules
1010
1111libdylib.dylib : dylib.c
12- $(MAKE ) -C $(BUILDDIR ) -f $(MAKEFILE_RULES ) \
12+ " $( MAKE) " -C $(BUILDDIR ) -f $(MAKEFILE_RULES ) \
1313 C_SOURCES= DYLIB_C_SOURCES=dylib.c DYLIB_NAME=dylib \
1414 CFLAGS_EXTRAS=-DHAS_THEM LD_EXTRAS=-dynamiclib
1515
1616hidden/libdylib.dylib :
1717 mkdir hidden
18- $(MAKE ) -C $(BUILDDIR ) /hidden -f $(MAKEFILE_RULES ) \
18+ " $( MAKE) " -C $(BUILDDIR ) /hidden -f $(MAKEFILE_RULES ) \
1919 C_SOURCES= DYLIB_C_SOURCES=dylib.c DYLIB_NAME=dylib \
2020 LD_EXTRAS=-dynamiclib
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ a.out: libload_a
66include Makefile.rules
77
88libload_a :
9- $(MAKE ) -f $(MAKEFILE_RULES ) \
9+ " $( MAKE) " -f $(MAKEFILE_RULES ) \
1010 DYLIB_ONLY=YES DYLIB_NAME=load_a DYLIB_CXX_SOURCES=a.cpp
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ CXX_SOURCES := main.cpp
22USE_LIBDL := 1
33
44lib_b :
5- $(MAKE ) -f $(MAKEFILE_RULES ) \
5+ " $( MAKE) " -f $(MAKEFILE_RULES ) \
66 DYLIB_ONLY=YES DYLIB_CXX_SOURCES=b.cpp DYLIB_NAME=lib_b
77all : lib_b
88
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ C_SOURCES := main.c
22USE_LIBDL := 1
33
44other :
5- $(MAKE ) -f $(MAKEFILE_RULES ) C_SOURCES=other.c EXE=other
5+ " $( MAKE) " -f $(MAKEFILE_RULES ) C_SOURCES=other.c EXE=other
66all : other
77
88include Makefile.rules
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ all: secondprog
55include Makefile.rules
66
77secondprog : secondprog.cpp
8- $(MAKE ) -f $(MAKEFILE_RULES ) \
8+ " $( MAKE) " -f $(MAKEFILE_RULES ) \
99 CXX_SOURCES=secondprog.cpp EXE=secondprog
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ all: a.out simple
55include Makefile.rules
66
77simple :
8- $(MAKE ) -f $(MAKEFILE_RULES ) \
8+ " $( MAKE) " -f $(MAKEFILE_RULES ) \
99 C_SOURCES=simple.c EXE=simple
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ include Makefile.rules
1717a.out : libone libtwo
1818
1919libone :
20- $(MAKE ) -f $(MAKEFILE_RULES ) \
20+ " $( MAKE) " -f $(MAKEFILE_RULES ) \
2121 DYLIB_ONLY=YES DYLIB_CXX_SOURCES=one.cpp DYLIB_NAME=one \
2222 CFLAGS_EXTRAS=" $( ONE_CXXFLAGS) "
2323
2424libtwo : libone
25- $(MAKE ) -f $(MAKEFILE_RULES ) \
25+ " $( MAKE) " -f $(MAKEFILE_RULES ) \
2626 DYLIB_ONLY=YES DYLIB_CXX_SOURCES=two.cpp DYLIB_NAME=two \
2727 CFLAGS_EXTRAS=" $( TWO_CXXFLAGS) " LD_EXTRAS=" -L. -lone"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ CXX_SOURCES := main.cpp
22USE_LIBDL := 1
33
44lib_b :
5- $(MAKE ) -f $(MAKEFILE_RULES ) \
5+ " $( MAKE) " -f $(MAKEFILE_RULES ) \
66 DYLIB_ONLY=YES DYLIB_CXX_SOURCES=b.cpp DYLIB_NAME=lib_b
77all : lib_b
88
Original file line number Diff line number Diff line change 1717endif
1818
1919t1 : t2_0
20- $(MAKE ) VPATH=$(SRCDIR ) -f $(MAKEFILE_RULES ) \
20+ " $( MAKE) " VPATH=$(SRCDIR ) -f $(MAKEFILE_RULES ) \
2121 DYLIB_ONLY=YES DYLIB_C_SOURCES=t1.c DYLIB_NAME=t1 LD_EXTRAS=" -L. $( LINKFLAGS) "
2222
2323t2_0 :
24- $(MAKE ) VPATH=$(SRCDIR ) -f $(MAKEFILE_RULES ) \
24+ " $( MAKE) " VPATH=$(SRCDIR ) -f $(MAKEFILE_RULES ) \
2525 DYLIB_ONLY=YES DYLIB_C_SOURCES=t2_0.c DYLIB_NAME=t2_0
2626
2727t2_1 :
28- $(MAKE ) VPATH=$(SRCDIR ) -f $(MAKEFILE_RULES ) \
28+ " $( MAKE) " VPATH=$(SRCDIR ) -f $(MAKEFILE_RULES ) \
2929 DYLIB_ONLY=YES DYLIB_C_SOURCES=t2_1.c DYLIB_NAME=t2_1
You can’t perform that action at this time.
0 commit comments