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 ProtocolHandlerAddon C++ component example of the SDK.
36 
37 PRJ=../../../../..
38 SETTINGS=$(PRJ)/settings
39 
40 include $(SETTINGS)/settings.mk
41 include $(SETTINGS)/std.mk
42 include $(SETTINGS)/dk.mk
43 
44 # Define non-platform/compiler specific settings
45 COMP_NAME=ProtocolHandlerAddon_cpp
46 COMP_IMPL_NAME=$(COMP_NAME).uno.$(SHAREDLIB_EXT)
47 OUT_COMP_INC=$(OUT_INC)/$(COMP_NAME)
48 OUT_COMP_GEN=$(OUT_MISC)/$(COMP_NAME)
49 OUT_COMP_SLO=$(OUT_SLO)/$(COMP_NAME)
50 COMP_PACKAGE = $(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT)
51 COMP_PACKAGE_URL = $(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
52 COMP_UNOPKG_MANIFEST = $(OUT_COMP_GEN)/$(COMP_NAME)/META-INF/manifest.xml
53 #COMP_MAPFILE = $(OUT_COMP_GEN)/$(COMP_NAME).uno.map
54 COMP_COMPONENTS = $(OUT_COMP_GEN)/$(COMP_NAME).components
55 
56 REGISTERFLAG = $(OUT_MISC)/cpp_$(COMP_NAME)_register_component.flag
57 
58 CXXFILES = component.cxx \
59 	   addon.cxx
60 
61 SLOFILES = $(patsubst %.cxx,$(OUT_COMP_SLO)/%.$(OBJ_EXT),$(CXXFILES))
62 
63 # Targets
64 .PHONY: ALL
65 ALL : \
66 	Example
67 
68 include $(SETTINGS)/stdtarget.mk
69 
70 $(OUT_COMP_SLO)/%.$(OBJ_EXT) : %.cxx $(SDKTYPEFLAG)
71 	-$(MKDIR) $(subst /,$(PS),$(@D))
72 	$(CC) $(CC_FLAGS) $(CC_INCLUDES) -I$(OUT_COMP_INC) $(CC_DEFINES) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $<
73 
74 #$(COMP_MAPFILE) : $(SLOFILES)
75 #	-$(MKDIR) $(subst /,$(PS),$(@D))
76 #	cat $(PRJ)/settings/component.uno.map > $(COMP_MAPFILE)
77 #ifeq "$(OS)" "MACOSX"
78 #	nm -gx $(SLOFILES) | $(ADDSYMBOLS) >> $(COMP_MAPFILE)
79 #endif
80 
81 ifeq "$(OS)" "WIN"
82 $(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES)
83 	-$(MKDIR) $(subst /,$(PS),$(@D))
84 	-$(MKDIR) $(subst /,$(PS),$(OUT_COMP_GEN))
85 	$(LINK) $(COMP_LINK_FLAGS) /OUT:$@ \
86 	/MAP:$(OUT_COMP_GEN)/$(subst $(SHAREDLIB_EXT),map,$(@F)) $(SLOFILES) \
87 	$(CPPUHELPERLIB) $(CPPULIB) $(SALLIB) $(STLPORTLIB) msvcrt.lib kernel32.lib
88 	$(LINK_MANIFEST)
89 else
90 #$(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES) $(COMP_MAPFILE)
91 $(SHAREDLIB_OUT)/%.$(SHAREDLIB_EXT) : $(SLOFILES)
92 	-$(MKDIR) $(subst /,$(PS),$(@D))
93 	$(LINK) $(COMP_LINK_FLAGS) $(LINK_LIBS) -o $@ $(SLOFILES) \
94 	$(CPPUHELPERLIB) $(CPPULIB) $(SALLIB) $(STLPORTLIB) $(STC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALDYLIB)
95 ifeq "$(OS)" "MACOSX"
96 	$(INSTALL_NAME_URELIBS)  $@
97 endif
98 endif
99 
100 # rule for component package manifest
101 $(OUT_COMP_GEN)/%/manifest.xml :
102 	-$(MKDIR) $(subst /,$(PS),$(@D))
103 	@echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
104 	@echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@
105 	@echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@
106 	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
107 	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)Addons.xcu$(QM)"/$(CSEP) >> $@
108 	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
109 	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)ProtocolHandler.xcu$(QM)"/$(CSEP) >> $@
110 	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components;platform=$(UNOPKG_PLATFORM)$(QM)">> $@
111 	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(COMP_NAME).components$(QM)"/$(CSEP)>> $@
112 	@echo $(OSEP)/manifest:manifest$(CSEP) >> $@
113 
114 $(COMP_COMPONENTS) :
115 	-$(MKDIR) $(subst /,$(PS),$(@D))
116 	@echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
117 	@echo $(OSEP)components xmlns="$(QM)http://openoffice.org/2010/uno-components$(QM)"$(CSEP) >> $@
118 	@echo $(SQM)  $(SQM)$(OSEP)component loader="$(QM)com.sun.star.loader.SharedLibrary$(QM)" uri="$(QM)$(UNOPKG_PLATFORM)/$(COMP_IMPL_NAME)$(QM)"$(CSEP) >> $@
119 	@echo $(SQM)    $(SQM)$(OSEP)implementation name="$(QM)org.openoffice.Office.addon.example$(QM)"$(CSEP) >> $@
120 	@echo $(SQM)      $(SQM)$(OSEP)service name="$(QM)com.sun.star.frame.ProtocolHandler$(QM)"/$(CSEP) >> $@
121 	@echo $(SQM)    $(SQM)$(OSEP)/implementation$(CSEP) >> $@
122 	@echo $(SQM)  $(SQM)$(OSEP)/component$(CSEP) >> $@
123 	@echo $(OSEP)/components$(CSEP) >> $@
124 
125 # rule for component package file
126 $(COMP_PACKAGE) : $(SHAREDLIB_OUT)/$(COMP_IMPL_NAME) Addons.xcu ProtocolHandler.xcu $(COMP_UNOPKG_MANIFEST) $(COMP_COMPONENTS)
127 	-$(MKDIR) $(subst /,$(PS),$(@D)) && $(DEL) $(subst \\,\,$(subst /,$(PS),$@))
128 	-$(MKDIR) $(subst /,$(PS),$(OUT_COMP_GEN)/$(UNOPKG_PLATFORM))
129 	$(COPY) $(subst /,$(PS),$<) $(subst /,$(PS),$(OUT_COMP_GEN)/$(UNOPKG_PLATFORM))
130 	cd $(subst /,$(PS),$(OUT_COMP_GEN)) && $(SDK_ZIP) ../../bin/$(@F) $(COMP_NAME).components
131 	cd $(subst /,$(PS),$(OUT_COMP_GEN)) && $(SDK_ZIP) -u ../../bin/$(@F) $(UNOPKG_PLATFORM)/$(<F)
132 	$(SDK_ZIP) -u $@ Addons.xcu ProtocolHandler.xcu
133 	cd $(subst /,$(PS),$(OUT_COMP_GEN)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
134 
135 $(REGISTERFLAG) : $(COMP_PACKAGE)
136 ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
137 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
138 	$(DEPLOYTOOL) $(COMP_PACKAGE_URL)
139 	@echo flagged > $(subst /,$(PS),$@)
140 else
141 	@echo --------------------------------------------------------------------------------
142 	@echo  If you want to install your component automatically, please set the environment
143 	@echo  variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
144 	@echo  possible if no office instance is running.
145 	@echo --------------------------------------------------------------------------------
146 endif
147 
148 Example : $(REGISTERFLAG)
149 	@echo --------------------------------------------------------------------------------
150 	@echo The "$(QM)ProtocolHandler$(QM)" addon component was installed if SDK_AUTO_DEPLOYMENT = YES.
151 	@echo You can use this component inside your office installation, see the example
152 	@echo description.
153 	@echo --------------------------------------------------------------------------------
154 
155 .PHONY: clean
156 clean :
157 	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_INC))
158 	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_GEN))
159 	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_SLO))
160 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL)))
161 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_COMPONENTS)))
162 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(REGISTERFLAG)))
163 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(SHAREDLIB_OUT)/$(COMP_NAME).*))
164