diff options
| -rw-r--r-- | lldb/source/Host/macosx/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lldb/source/Host/macosx/Makefile b/lldb/source/Host/macosx/Makefile index eebbbee05aa..640d944a0e7 100644 --- a/lldb/source/Host/macosx/Makefile +++ b/lldb/source/Host/macosx/Makefile @@ -11,14 +11,16 @@ LLDB_LEVEL := ../../.. LIBRARYNAME := lldbHostMacOSX BUILD_ARCHIVE = 1 -SOURCES = $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp $(PROJ_SRC_DIR)/*.mm)) \ +CFCPP_SOURCES = \ $(addprefix cfcpp/,$(notdir $(wildcard $(PROJ_SRC_DIR)/cfcpp/*.cpp))) +SOURCES = $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp $(PROJ_SRC_DIR)/*.mm)) \ + $(CFCPP_SOURCES) -# Make sure the cfcpp output directory exists -all-local:: $(PROJ_OBJ_DIR)/$(BuildMode)/cfcpp +include $(LLDB_LEVEL)/Makefile -$(PROJ_OBJ_DIR)/$(BuildMode)/cfcpp: - -$(Verb) $(MKDIR) $(PROJ_OBJ_DIR)/$(BuildMode)/cfcpp 2>/dev/null +CFCPP_BaseNameSources := $(sort $(basename $(CFCPP_SOURCES))) +CFCPP_OBJECTS := $(CFCPP_BaseNameSources:%=$(ObjDir)/%.o) -include $(LLDB_LEVEL)/Makefile +# Make sure the cfcpp output directory exists +$(CFCPP_OBJECTS): $(ObjDir)/cfcpp/.dir |

