diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/load_unload/a.mk')
-rw-r--r-- | packages/Python/lldbsuite/test/functionalities/load_unload/a.mk | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk b/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk new file mode 100644 index 000000000000..0eb810e21787 --- /dev/null +++ b/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk @@ -0,0 +1,23 @@ +LEVEL := ../../make + +LIB_PREFIX := loadunload_ + +CFLAGS_EXTRAS := -fPIC +LD_EXTRAS := -L. -l$(LIB_PREFIX)b + +DYLIB_NAME := $(LIB_PREFIX)a +DYLIB_CXX_SOURCES := a.cpp +DYLIB_ONLY := YES + +CXXFLAGS += -fPIC + +include $(LEVEL)/Makefile.rules + +.PHONY: +$(DYLIB_FILENAME): lib_b + +lib_b: + "$(MAKE)" -f b.mk + +clean:: + "$(MAKE)" -f b.mk clean |