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

--- 59 unchanged lines hidden (view full) ---

68#endif
69
70ifeq "$(OS)" "WIN"
71$(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES)
72 -$(MKDIR) $(subst /,$(PS),$(@D))
73 -$(MKDIR) $(subst /,$(PS),$(OUT_COMP_GEN))
74 $(LINK) $(COMP_LINK_FLAGS) /OUT:$@ \
75 /MAP:$(OUT_COMP_GEN)/$(subst $(SHAREDLIB_EXT),map,$(@F)) $(SLOFILES) \
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

--- 59 unchanged lines hidden (view full) ---

68#endif
69
70ifeq "$(OS)" "WIN"
71$(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES)
72 -$(MKDIR) $(subst /,$(PS),$(@D))
73 -$(MKDIR) $(subst /,$(PS),$(OUT_COMP_GEN))
74 $(LINK) $(COMP_LINK_FLAGS) /OUT:$@ \
75 /MAP:$(OUT_COMP_GEN)/$(subst $(SHAREDLIB_EXT),map,$(@F)) $(SLOFILES) \
76 $(CPPUHELPERLIB) $(CPPULIB) $(SALLIB) $(STLPORTLIB) msvcrt.lib kernel32.lib
76 $(CPPUHELPERLIB) $(CPPULIB) $(SALLIB) msvcrt.lib kernel32.lib
77 $(LINK_MANIFEST)
78else
79$(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES)
80 -$(MKDIR) $(subst /,$(PS),$(@D))
81 $(LINK) $(COMP_LINK_FLAGS) $(LINK_LIBS) -o $@ $(SLOFILES) \
77 $(LINK_MANIFEST)
78else
79$(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES)
80 -$(MKDIR) $(subst /,$(PS),$(@D))
81 $(LINK) $(COMP_LINK_FLAGS) $(LINK_LIBS) -o $@ $(SLOFILES) \
82 $(CPPUHELPERLIB) $(CPPULIB) $(SALLIB) $(STLPORTLIB) $(STC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALDYLIB)
82 $(CPPUHELPERLIB) $(CPPULIB) $(SALLIB) $(STC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALDYLIB)
83ifeq "$(OS)" "MACOSX"
84 $(INSTALL_NAME_URELIBS) $@
85endif
86endif
87
88# rule for component package manifest
89$(OUT_COMP_GEN)/%/manifest.xml :
90 -$(MKDIR) $(subst /,$(PS),$(@D))

--- 61 unchanged lines hidden ---
83ifeq "$(OS)" "MACOSX"
84 $(INSTALL_NAME_URELIBS) $@
85endif
86endif
87
88# rule for component package manifest
89$(OUT_COMP_GEN)/%/manifest.xml :
90 -$(MKDIR) $(subst /,$(PS),$(@D))

--- 61 unchanged lines hidden ---