Makefile (122c3632) | Makefile (b597708b) |
---|---|
1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 48 unchanged lines hidden (view full) --- 57 -$(MKDIR) $(subst /,$(PS),$(@D)) 58 $(CC) $(CC_FLAGS) $(CC_INCLUDES) -I$(SAMPLE_INC_OUT) $(CC_DEFINES) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $< 59 60$(OUT_BIN)/%$(EXE_EXT) : $(SAMPLE_OBJ_OUT)/%.$(OBJ_EXT) 61 -$(MKDIR) $(subst /,$(PS),$(@D)) 62 -$(MKDIR) $(subst /,$(PS),$(SAMPLE_GEN_OUT)) 63ifeq "$(OS)" "WIN" 64 $(LINK) $(EXE_LINK_FLAGS) /OUT:$@ /MAP:$(SAMPLE_GEN_OUT)/$(subst $(EXE_EXT),.map,$(@F)) \ | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 48 unchanged lines hidden (view full) --- 57 -$(MKDIR) $(subst /,$(PS),$(@D)) 58 $(CC) $(CC_FLAGS) $(CC_INCLUDES) -I$(SAMPLE_INC_OUT) $(CC_DEFINES) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $< 59 60$(OUT_BIN)/%$(EXE_EXT) : $(SAMPLE_OBJ_OUT)/%.$(OBJ_EXT) 61 -$(MKDIR) $(subst /,$(PS),$(@D)) 62 -$(MKDIR) $(subst /,$(PS),$(SAMPLE_GEN_OUT)) 63ifeq "$(OS)" "WIN" 64 $(LINK) $(EXE_LINK_FLAGS) /OUT:$@ /MAP:$(SAMPLE_GEN_OUT)/$(subst $(EXE_EXT),.map,$(@F)) \ |
65 $< $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB) | 65 $< $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) |
66else 67 $(LINK) $(EXE_LINK_FLAGS) $(LINK_LIBS) -o $@ $< \ | 66else 67 $(LINK) $(EXE_LINK_FLAGS) $(LINK_LIBS) -o $@ $< \ |
68 $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB) $(STDC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALHELPERDYLIB) $(SALDYLIB) | 68 $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STDC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALHELPERDYLIB) $(SALDYLIB) |
69ifeq "$(OS)" "MACOSX" 70 $(INSTALL_NAME_URELIBS_BIN) $@ 71endif 72endif 73 74$(OUT_BIN)/office_connect$(EXE_EXT) : $(SAMPLE_OBJ_OUT)/office_connect.$(OBJ_EXT) 75 76$(OUT_BIN)/string_samples$(EXE_EXT) : $(SAMPLE_OBJ_OUT)/string_samples.$(OBJ_EXT) --- 29 unchanged lines hidden --- | 69ifeq "$(OS)" "MACOSX" 70 $(INSTALL_NAME_URELIBS_BIN) $@ 71endif 72endif 73 74$(OUT_BIN)/office_connect$(EXE_EXT) : $(SAMPLE_OBJ_OUT)/office_connect.$(OBJ_EXT) 75 76$(OUT_BIN)/string_samples$(EXE_EXT) : $(SAMPLE_OBJ_OUT)/string_samples.$(OBJ_EXT) --- 29 unchanged lines hidden --- |