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 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22#************************************************************************* 23# 24# The Contents of this file are made available subject to the terms of 25# the BSD license. 26# 27# Copyright 2000, 2010 Oracle and/or its affiliates. 28# All rights reserved. 29# 30# Redistribution and use in source and binary forms, with or without 31# modification, are permitted provided that the following conditions 32# are met: 33# 1. Redistributions of source code must retain the above copyright 34# notice, this list of conditions and the following disclaimer. 35# 2. Redistributions in binary form must reproduce the above copyright 36# notice, this list of conditions and the following disclaimer in the 37# documentation and/or other materials provided with the distribution. 38# 3. Neither the name of Sun Microsystems, Inc. nor the names of its 39# contributors may be used to endorse or promote products derived 40# from this software without specific prior written permission. 41# 42# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 43# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 44# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 45# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 46# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 47# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 48# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 49# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 50# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 51# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 52# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 53# 54#************************************************************************** 55 56# Builds the Java Spreadsheet examples of the SDK. 57 58PRJ=../../.. 59SETTINGS=$(PRJ)/settings 60 61include $(SETTINGS)/settings.mk 62include $(SETTINGS)/std.mk 63include $(SETTINGS)/dk.mk 64 65# Define non-platform/compiler specific settings 66EXAMPLE_NAME=JavaSpreadsheetExamples 67OUT_COMP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME) 68OUT_COMP_GEN = $(OUT_MISC)/$(EXAMPLE_NAME) 69 70APP1_NAME=EuroAdaption 71APP1_JAR=$(OUT_COMP_CLASS)/$(APP1_NAME).jar 72APP2_NAME=SCalc 73APP2_JAR=$(OUT_COMP_CLASS)/$(APP2_NAME).jar 74APP3_NAME=ChartTypeChange 75APP3_JAR=$(OUT_COMP_CLASS)/$(APP3_NAME).jar 76 77COMP_NAME=CalcAddins 78COMP_RDB_NAME=$(COMP_NAME).uno.rdb 79COMP_RDB=$(OUT_COMP_GEN)/$(COMP_RDB_NAME) 80COMP_PACKAGE=$(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT) 81COMP_PACKAGE_URL=$(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)") 82COMP_JAR_NAME=$(COMP_NAME).uno.jar 83COMP_JAR=$(OUT_COMP_CLASS)/$(COMP_JAR_NAME) 84COMP_MANIFESTFILE=$(OUT_COMP_CLASS)/$(COMP_NAME).uno.Manifest 85COMP_UNOPKG_MANIFEST = $(OUT_COMP_CLASS)/$(COMP_NAME)/META-INF/manifest.xml 86COMP_REGISTERFLAG=$(OUT_MISC)$(PS)java_$(COMP_NAME)_register_component.flag 87COMP_COMPONENTS=$(COMP_NAME).components 88 89IDLFILES = XCalcAddins.idl 90 91# normally the idl file should be stored in a directory tree fitting the module structure, 92# for the example we know the module structure 93PACKAGE = org/openoffice/sheet/addin 94 95COMPJAVAFILES = CalcAddins.java 96 97#GENJAVAFILES = $(patsubst %.idl,$(OUT_COMP_GEN)/$(PACKAGE)/%.java,$(IDLFILES)) 98GENCLASSFILES = $(patsubst %.idl,$(OUT_COMP_CLASS)/$(PACKAGE)/%.class,$(IDLFILES)) 99GENTYPELIST = $(subst /,.,$(patsubst %.idl,-T$(PACKAGE)/% ,$(IDLFILES))) 100GENURDFILES = $(patsubst %.idl,$(OUT_COMP_GEN)/%.urd,$(IDLFILES)) 101 102COMPCLASSFILES = $(patsubst %.java,$(OUT_COMP_CLASS)/%.class,$(COMPJAVAFILES)) 103#COMPCLASSFILES += $(subst $(OUT_COMP_GEN),$(OUT_COMP_CLASS),$(GENJAVAFILES:.java=.class)) 104 105$(COMP_NAME)_CLASSFILES = $(COMP_NAME).class \ 106 $(COMP_NAME)$(QUOTE)$$_$(COMP_NAME).class 107 108#$(COMP_NAME)_CLASSFILES += $(subst $(OUT_COMP_GEN)/,,$(GENJAVAFILES:.java=.class)) 109$(COMP_NAME)_CLASSFILES += $(subst $(OUT_COMP_CLASS)/,,$(GENCLASSFILES)) 110 111SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\ 112 $(PATH_SEPARATOR)$(OUT_COMP_CLASS)) 113 114# Targets 115.PHONY: ALL 116ALL : $(EXAMPLE_NAME) 117 118include $(SETTINGS)/stdtarget.mk 119 120# rule for a component manifest file 121$(OUT_COMP_CLASS)/%.Manifest : 122 -$(MKDIR) $(subst /,$(PS),$(@D)) 123 @echo UNO-Type-Path: $(basename $*).uno.jar> $@ 124 @echo RegistrationClassName: $(basename $*)>> $@ 125 126$(OUT_COMP_GEN)/%.urd : %.idl 127 -$(MKDIR) $(subst /,$(PS),$(@D)) 128 $(IDLC) -C -I. -I$(IDL_DIR) -O$(OUT_COMP_GEN) $< 129 130$(OUT_COMP_GEN)/%.rdb : $(GENURDFILES) 131 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 132 -$(MKDIR) $(subst /,$(PS),$(@D)) 133 $(REGMERGE) $@ /UCR $(GENURDFILES) 134 135#$(OUT_COMP_GEN)/%.java : $(COMP_RDB) 136$(GENCLASSFILES) : $(COMP_RDB) 137 -$(MKDIR) $(subst /,$(PS),$(@D)) 138 $(JAVAMAKER) -BUCR -nD $(GENTYPELIST) -O$(OUT_COMP_CLASS) $(COMP_RDB) -X$(URE_TYPES) -X$(OFFICE_TYPES) 139 140$(OUT_COMP_CLASS)/%.class : %.java 141 -$(MKDIR) $(subst /,$(PS),$(@D)) 142 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $< 143 144# only the component depends on the generated types 145$(COMPCLASSFILES) : $(JAVAFILES) $(GENCLASSFILES) 146 -$(MKDIR) $(subst /,$(PS),$(@D)) 147 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $(COMPJAVAFILES) 148 149# rule for client/example application manifest file 150$(OUT_COMP_CLASS)/%.mf : 151 -$(MKDIR) $(subst /,$(PS),$(@D)) 152 @echo Main-Class: com.sun.star.lib.loader.Loader> $@ 153 $(ECHOLINE)>> $@ 154 @echo Name: com/sun/star/lib/loader/Loader.class>> $@ 155 @echo Application-Class: $*>> $@ 156 157# rule for client/example application jar file 158$(OUT_COMP_CLASS)/%.jar : $(OUT_COMP_CLASS)/%.mf $(OUT_COMP_CLASS)/%.class 159 -$(MKDIR) $(subst /,$(PS),$(@D)) 160 +cd $(subst /,$(PS),$(OUT_COMP_CLASS)) && $(SDK_JAR) cvfm $(@F) $*.mf $*.class 161 +$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES) 162 163# rule for component jar file 164$(COMP_JAR) : $(COMP_MANIFESTFILE) $(COMPCLASSFILES) 165 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 166 -$(MKDIR) $(subst /,$(PS),$(@D)) 167 cd $(subst /,$(PS),$(OUT_COMP_CLASS)) && $(SDK_JAR) cvfm $(@F) $(<F) $($(basename $(basename $(@F)))_CLASSFILES) 168 169# rule for component package manifest 170$(OUT_COMP_CLASS)/%/manifest.xml : 171 -$(MKDIR) $(subst /,$(PS),$(@D)) 172 @echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@ 173 @echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@ 174 @echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@ 175 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-typelibrary;type=RDB$(QM)" >> $@ 176 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(OUT_COMP_CLASS)/,,$(@D))).uno.rdb$(QM)"/$(CSEP) >> $@ 177 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@ 178 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(COMP_NAME).components$(QM)"/$(CSEP)>> $@ 179 @echo $(OSEP)/manifest:manifest$(CSEP) >> $@ 180 181# rule for component package file 182$(COMP_PACKAGE) : $(COMP_RDB) $(COMP_JAR) $(COMP_UNOPKG_MANIFEST) $(COMP_NAME).components 183 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 184 -$(MKDIR) $(subst /,$(PS),$(@D)) 185 $(COPY) $(subst /,$(PS),$<) $(subst /,$(PS),$(OUT_COMP_CLASS)) 186 $(SDK_ZIP) $@ -u $(COMP_NAME).components 187 cd $(subst /,$(PS),$(OUT_COMP_CLASS)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_RDB_NAME) $(COMP_JAR_NAME) 188 cd $(subst /,$(PS),$(OUT_COMP_CLASS)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml 189 $(DEL) $(subst \\,\,$(subst /,$(PS),$(OUT_COMP_CLASS)/$(<F))) 190 191$(COMP_REGISTERFLAG) : $(COMP_PACKAGE) 192ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES" 193 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 194 -$(MKDIR) $(subst /,$(PS),$(@D)) 195 $(DEPLOYTOOL) $(COMP_PACKAGE_URL) 196 @echo flagged > $(subst /,$(PS),$@) 197else 198 @echo -------------------------------------------------------------------------------- 199 @echo If you want to install your component automatically, please set the environment 200 @echo variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only 201 @echo possible if no office instance is running. 202 @echo -------------------------------------------------------------------------------- 203endif 204 205$(APP1_JAR) : $(OUT_COMP_CLASS)/$(APP1_NAME).mf $(OUT_COMP_CLASS)/$(APP1_NAME).class 206$(APP2_JAR) : $(OUT_COMP_CLASS)/$(APP2_NAME).mf $(OUT_COMP_CLASS)/$(APP2_NAME).class 207$(APP3_JAR) : $(OUT_COMP_CLASS)/$(APP3_NAME).mf $(OUT_COMP_CLASS)/$(APP3_NAME).class 208 209$(EXAMPLE_NAME) : $(COMP_REGISTERFLAG) $(APP1_JAR) $(APP2_JAR) $(APP3_JAR) 210 @echo -------------------------------------------------------------------------------- 211 @echo Please use the following command to execute the examples! 212 @echo - 213 @echo $(MAKE) EuroAdaption.run 214 @echo $(MAKE) SCalc.run 215 @echo $(MAKE) ChartTypeChange.run 216 @echo -------------------------------------------------------------------------------- 217 @echo The Calc add-in component was installed if SDK_AUTO_DEPLOYMENT = YES. 218 @echo You can use this component inside your office installation, see the example 219 @echo description. You can also load the "$(QM)CalcAddins.ods$(QM)" document to see 220 @echo how the add-in functions works. 221 @echo - 222 @echo $(MAKE) CalcAddins.ods.load 223 @echo -------------------------------------------------------------------------------- 224 225%.run: $(OUT_COMP_CLASS)/%.jar 226 $(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $< 227 228CalcAddins.ods.load : $(COMP_REGISTERFLAG) 229 "$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@) 230 231.PHONY: clean 232clean : 233 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_CLASS)) 234 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_GEN)) 235 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL))) 236 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_REGISTERFLAG))) 237