1 #************************************************************************* 2# 3# The Contents of this file are made available subject to the terms of 4# the BSD license. 5# 6# Copyright 2000, 2010 Oracle and/or its affiliates. 7# All rights reserved. 8# 9# Redistribution and use in source and binary forms, with or without 10# modification, are permitted provided that the following conditions 11# are met: 12# 1. Redistributions of source code must retain the above copyright 13# notice, this list of conditions and the following disclaimer. 14# 2. Redistributions in binary form must reproduce the above copyright 15# notice, this list of conditions and the following disclaimer in the 16# documentation and/or other materials provided with the distribution. 17# 3. Neither the name of Sun Microsystems, Inc. nor the names of its 18# contributors may be used to endorse or promote products derived 19# from this software without specific prior written permission. 20# 21# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 24# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 25# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 26# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 27# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 28# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 29# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 30# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 31# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32# 33#************************************************************************** 34 35# Builds the complextoolbarcontrols C++ component example of the SDK. 36 37PRJ=../../.. 38SETTINGS=$(PRJ)/settings 39 40include $(SETTINGS)/settings.mk 41include $(SETTINGS)/std.mk 42include $(SETTINGS)/dk.mk 43 44# Define non-platform/compiler specific settings 45COMP_NAME=complextoolbarcontrols 46COMP_IMPL_NAME=$(COMP_NAME).uno.$(SHAREDLIB_EXT) 47OUT_COMP_INC=$(OUT_INC)/$(COMP_NAME) 48OUT_COMP_GEN=$(OUT_MISC)/$(COMP_NAME) 49OUT_COMP_SLO=$(OUT_SLO)/$(COMP_NAME) 50COMP_PACKAGE = $(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT) 51COMP_PACKAGE_URL = $(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)") 52COMP_UNOPKG_MANIFEST = $(OUT_COMP_GEN)/$(COMP_NAME)/META-INF/manifest.xml 53COMP_MAPFILE = $(OUT_COMP_GEN)/$(COMP_NAME).uno.map 54COMP_COMPONENTS = $(OUT_COMP_GEN)/$(COMP_NAME).components 55COMP_REGISTERFLAG = $(OUT_MISC)/cpp_$(COMP_NAME)_register_component.flag 56COMP_TYPEFLAG = $(OUT_MISC)/cpp_$(COMP_NAME)_types.flag 57 58CXXFILES = \ 59 MyProtocolHandler.cxx \ 60 MyJob.cxx \ 61 MyListener.cxx \ 62 WriterListener.cxx \ 63 CalcListener.cxx \ 64 ListenerHelper.cxx \ 65 exports.cxx 66 67SLOFILES = $(patsubst %.cxx,$(OUT_COMP_SLO)/%.$(OBJ_EXT),$(CXXFILES)) 68 69# Add OSL_DEBUG_LEVEL to compiler the flags (for OSL_TRACE et. al.) 70ifeq "$(DEBUG)" "yes" 71CC_FLAGS += -DOSL_DEBUG_LEVEL=2 72endif 73 74# Targets 75.PHONY: ALL 76ALL : \ 77 Example 78 79include $(SETTINGS)/stdtarget.mk 80 81$(OUT_COMP_SLO)/%.$(OBJ_EXT) : %.cxx $(SDKTYPEFLAG) 82 -$(MKDIR) $(subst /,$(PS),$(@D)) 83 $(CC) $(CC_FLAGS) $(STL_INCLUDES) $(CC_INCLUDES) -I$(OUT_COMP_INC) $(CC_DEFINES) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $< 84 85 86#$(COMP_MAPFILE) : $(SLOFILES) 87# -$(MKDIR) $(subst /,$(PS),$(@D)) 88# cat $(PRJ)/settings/component.uno.map > $(COMP_MAPFILE) 89#ifeq "$(OS)" "MACOSX" 90# nm -gx $(SLOFILES) | $(ADDSYMBOLS) >> $(COMP_MAPFILE) 91#endif 92 93ifeq "$(OS)" "WIN" 94$(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES) 95 -$(MKDIR) $(subst /,$(PS),$(@D)) 96 -$(MKDIR) $(subst /,$(PS),$(OUT_COMP_GEN)) 97 $(LINK) $(COMP_LINK_FLAGS) /OUT:$@ \ 98 /MAP:$(OUT_COMP_GEN)/$(subst $(SHAREDLIB_EXT),map,$(@F)) $(SLOFILES) \ 99 $(CPPUHELPERLIB) $(CPPULIB) $(SALLIB) $(STLPORTLIB) msvcrt.lib kernel32.lib 100 $(LINK_MANIFEST) 101else 102#$(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES) $(COMP_MAPFILE) 103$(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES) 104 -$(MKDIR) $(subst /,$(PS),$(@D)) 105 $(LINK) $(COMP_LINK_FLAGS) $(LINK_LIBS) -o $@ $(SLOFILES) \ 106 $(CPPUHELPERLIB) $(CPPULIB) $(SALLIB) $(STLPORTLIB) $(STC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALDYLIB) 107ifeq "$(OS)" "MACOSX" 108 $(INSTALL_NAME_URELIBS) $@ 109endif 110endif 111 112# rule for component package manifest 113$(OUT_COMP_GEN)/%/manifest.xml : 114 -$(MKDIR) $(subst /,$(PS),$(@D)) 115 @echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@ 116 @echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@ 117 @echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@ 118 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@ 119 @echo $(SQM) $(SQM)manifest:full-path="$(QM)Addons.xcu$(QM)"/$(CSEP) >> $@ 120 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@ 121 @echo $(SQM) $(SQM)manifest:full-path="$(QM)WriterWindowState.xcu$(QM)"/$(CSEP) >> $@ 122 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:meda-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@ 123 @echo $(SQM) $(SQM)manifest:full-path="$(QM)CalcWindowState.xcu$(QM)"/$(CSEP) >> $@ 124 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@ 125 @echo $(SQM) $(SQM)manifest:full-path="$(QM)ProtocolHandler.xcu$(QM)"/$(CSEP) >> $@ 126 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components;platform=$(UNOPKG_PLATFORM)$(QM)">> $@ 127 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(COMP_NAME).components$(QM)"/$(CSEP)>> $@ 128 129# @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-component;type=native;platform=$(UNOPKG_PLATFORM)$(QM)" >> $@ 130# @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(OUT_COMP_GEN)/,,$(UNOPKG_PLATFORM)/$(@D))).uno.$(SHAREDLIB_EXT)$(QM)"/$(CSEP) >> $@ 131 @echo $(OSEP)/manifest:manifest$(CSEP) >> $@ 132 133$(COMP_COMPONENTS) : 134 -$(MKDIR) $(subst /,$(PS),$(@D)) 135 @echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@ 136 @echo $(OSEP)components xmlns="$(QM)http://openoffice.org/2010/uno-components$(QM)"$(CSEP) >> $@ 137 @echo $(SQM) $(SQM)$(OSEP)component loader="$(QM)com.sun.star.loader.SharedLibrary$(QM)" uri="$(QM)$(UNOPKG_PLATFORM)/$(COMP_IMPL_NAME)$(QM)"$(CSEP) >> $@ 138 @echo $(SQM) $(SQM)$(OSEP)implementation name="$(QM)vnd.My.impl.NewDocListener$(QM)"$(CSEP) >> $@ 139 @echo $(SQM) $(SQM)$(OSEP)service name="$(QM)vnd.My.NewDocListener$(QM)"/$(CSEP) >> $@ 140 @echo $(SQM) $(SQM)$(OSEP)/implementation$(CSEP) >> $@ 141 @echo $(SQM) $(SQM)$(OSEP)implementation name="$(QM)vnd.demo.Impl.ProtocolHandler$(QM)"$(CSEP) >> $@ 142 @echo $(SQM) $(SQM)$(OSEP)service name="$(QM)vnd.demo.ProtocolHandler$(QM)"/$(CSEP) >> $@ 143 @echo $(SQM) $(SQM)$(OSEP)/implementation$(CSEP) >> $@ 144 @echo $(SQM) $(SQM)$(OSEP)/component$(CSEP) >> $@ 145 @echo $(OSEP)/components$(CSEP) >> $@ 146 147# rule for component package file 148$(COMP_PACKAGE) : $(SHAREDLIB_OUT)/$(COMP_IMPL_NAME) Addons.xcu ProtocolHandler.xcu WriterWindowState.xcu CalcWindowState.xcu $(COMP_UNOPKG_MANIFEST) $(COMP_COMPONENTS) 149 -$(MKDIR) $(subst /,$(PS),$(@D)) && $(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 150 -$(MKDIR) $(subst /,$(PS),$(OUT_COMP_GEN)/$(UNOPKG_PLATFORM)) 151 $(COPY) $(subst /,$(PS),$<) $(subst /,$(PS),$(OUT_COMP_GEN)/$(UNOPKG_PLATFORM)) 152 cd $(subst /,$(PS),$(OUT_COMP_GEN)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_NAME).components 153 cd $(subst /,$(PS),$(OUT_COMP_GEN)) && $(SDK_ZIP) -u ../../bin/$(@F) $(UNOPKG_PLATFORM)/$(<F) 154 $(SDK_ZIP) -u $@ Addons.xcu ProtocolHandler.xcu WriterWindowState.xcu CalcWindowState.xcu logo_small.png logo_big.png 155 cd $(subst /,$(PS),$(OUT_COMP_GEN)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml 156 157$(COMP_REGISTERFLAG) : $(COMP_PACKAGE) 158ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES" 159 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 160 $(DEPLOYTOOL) $(COMP_PACKAGE_URL) 161 @echo flagged > $(subst /,$(PS),$@) 162else 163 @echo -------------------------------------------------------------------------------- 164 @echo If you want to install your component automatically, please set the environment 165 @echo variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only 166 @echo possible if no office instance is running. 167 @echo -------------------------------------------------------------------------------- 168endif 169 170Example : $(COMP_REGISTERFLAG) 171 @echo -------------------------------------------------------------------------------- 172 @echo The "$(QM)ProtocolHandler$(QM)" addon component was installed if SDK_AUTO_DEPLOYMENT = YES. 173 @echo You can use this component inside your office installation, see the example 174 @echo description. 175 @echo -------------------------------------------------------------------------------- 176 177run: $(COMP1_COMP_REGISTERFLAG) 178 "$(OFFICE_PROGRAM_PATH)$(PS)soffice" -writer 179 180 181.PHONY: clean 182clean : 183 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_INC)) 184 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_GEN)) 185 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_SLO)) 186 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL))) 187 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_REGISTERFLAG))) 188 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_TYPEFLAG))) 189 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(SHAREDLIB_OUT)/$(COMP_NAME).*)) 190