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 Calc Addin example 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 66COMP_NAME=ToDo 67COMP_CLASS_OUT=$(OUT_CLASS)/$(COMP_NAME) 68COMP_GEN_OUT=$(OUT_MISC)/$(COMP_NAME) 69COMP_RDB_NAME=$(COMP_NAME).uno.rdb 70COMP_RDB=$(COMP_GEN_OUT)/$(COMP_RDB_NAME) 71COMP_PACKAGE=$(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT) 72COMP_PACKAGE_URL=$(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)") 73COMP_JAR_NAME=$(COMP_NAME).uno.jar 74COMP_JAR=$(COMP_CLASS_OUT)/$(COMP_JAR_NAME) 75COMP_JAR_MANIFEST=$(COMP_CLASS_OUT)/$(COMP_NAME).uno.Manifest 76COMP_UNOPKG_MANIFEST = $(COMP_GEN_OUT)/META-INF/manifest.xml 77COMP_REGISTERFLAG=$(COMP_GEN_OUT)$(PS)java_$(COMP_NAME)_register_component.flag 78COMP_COMPONENTS=$(COMP_NAME).components 79 80IDLFILES = XToDo.idl \ 81 ToDo.idl 82 83# normally the idl file should be stored in a directory tree fitting the module 84# structure, for the example we know the module structure 85PACKAGE = org/openoffice 86 87COMP_JAVAFILES = ToDo.java 88COMP_CLASSFILES = $(patsubst %.java,$(COMP_CLASS_OUT)/%.class,$(COMP_JAVAFILES)) 89 90GEN_CLASSFILES = $(patsubst %.idl,$(COMP_CLASS_OUT)/$(PACKAGE)/%.class,$(IDLFILES)) 91GEN_TYPELIST = $(subst /,.,$(patsubst %.idl,-T$(PACKAGE)/% ,$(IDLFILES))) 92GEN_URDFILES = $(patsubst %.idl,$(COMP_GEN_OUT)/%.urd,$(IDLFILES)) 93 94 95$(COMP_NAME)_CLASSFILES = $(COMP_NAME).class \ 96 $(COMP_NAME)$(QUOTE)$$$(COMP_NAME)Impl.class 97 98$(COMP_NAME)_CLASSFILES += $(subst $(COMP_CLASS_OUT)/,,$(GEN_CLASSFILES)) 99 100SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\ 101 $(PATH_SEPARATOR)$(COMP_CLASS_OUT)) 102 103 104# Targets 105.PHONY: ALL 106ALL : JavaToDoExample 107 108include $(SETTINGS)/stdtarget.mk 109 110$(COMP_CLASS_OUT)/%.Manifest : 111 -$(MKDIR) $(subst /,$(PS),$(@D)) 112 @echo UNO-Type-Path: $(basename $*).uno.jar> $@ 113 @echo RegistrationClassName: $(basename $(basename $(@F)))>> $@ 114 115$(COMP_GEN_OUT)/%.urd : %.idl 116 -$(MKDIR) $(subst /,$(PS),$(@D)) 117 $(IDLC) -C -I. -I$(IDL_DIR) -O$(COMP_GEN_OUT) $< 118 119$(COMP_GEN_OUT)/%.rdb : $(GEN_URDFILES) 120 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 121 -$(MKDIR) $(subst /,$(PS),$(@D)) 122 $(REGMERGE) $@ /UCR $(GEN_URDFILES) 123 124$(GEN_CLASSFILES) : $(COMP_RDB) 125 -$(MKDIR) $(subst /,$(PS),$(@D)) 126 $(JAVAMAKER) -BUCR -nD $(GEN_TYPELIST) -O$(COMP_CLASS_OUT) $(COMP_RDB) -X$(URE_TYPES) -X$(OFFICE_TYPES) 127 128$(COMP_CLASSFILES) : $(COMP_JAVAFILES) $(GEN_CLASSFILES) 129 -$(MKDIR) $(subst /,$(PS),$(@D)) 130 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(COMP_CLASS_OUT) $(COMP_JAVAFILES) 131 132# rule for component jar file 133$(COMP_JAR) : $(COMP_JAR_MANIFEST) $(COMP_CLASSFILES) 134 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 135 -$(MKDIR) $(subst /,$(PS),$(@D)) 136 cd $(subst /,$(PS),$(COMP_CLASS_OUT)) && $(SDK_JAR) cvfm $(@F) $(<F) $($(basename $(basename $(@F)))_CLASSFILES) 137 138# rule for component package manifest 139$(COMP_GEN_OUT)/%/manifest.xml : 140 -$(MKDIR) $(subst /,$(PS),$(@D)) 141 @echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@ 142 @echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@ 143 @echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@ 144 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-typelibrary;type=RDB$(QM)" >> $@ 145 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(OUT_MISC)/,,$(@D))).uno.rdb$(QM)"/$(CSEP) >> $@ 146 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@ 147 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(COMP_NAME).components$(QM)"/$(CSEP)>> $@ 148 @echo $(OSEP)/manifest:manifest$(CSEP) >> $@ 149 150# rule for component package file 151$(COMP_PACKAGE) : $(COMP_RDB) $(COMP_JAR) $(COMP_UNOPKG_MANIFEST) $(COMP_NAME).components 152 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 153 -$(MKDIR) $(subst /,$(PS),$(@D)) 154 $(SDK_ZIP) $@ $(COMP_NAME).components 155 cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_RDB_NAME) 156 cd $(subst /,$(PS),$(COMP_CLASS_OUT)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_JAR_NAME) 157 cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u ../../bin/$(@F) META-INF/manifest.xml 158 159$(COMP_REGISTERFLAG) : $(COMP_PACKAGE) 160ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES" 161 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 162 -$(MKDIR) $(subst /,$(PS),$(@D)) 163 $(DEPLOYTOOL) $(COMP_PACKAGE_URL) 164 @echo flagged > $(subst /,$(PS),$@) 165else 166 @echo -------------------------------------------------------------------------------- 167 @echo If you want to install your component automatically, please set the environment 168 @echo variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only 169 @echo possible if no office instance is running. 170 @echo -------------------------------------------------------------------------------- 171endif 172 173JavaToDoExample : $(COMP_REGISTERFLAG) 174 @echo -------------------------------------------------------------------------------- 175 @echo The $(COMP_NAME) Java component was installed if SDK_AUTO_DEPLOYMENT = YES. 176 @echo Please load the "$(QM)ToDo.ods$(QM)" document to see how this component works, see 177 @echo the example description. 178 @echo - 179 @echo $(MAKE) ToDo.ods.load 180 @echo -------------------------------------------------------------------------------- 181 182ToDo.ods.load : $(COMP_REGISTERFLAG) 183 "$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@) 184 185.PHONY: clean 186clean : 187 -$(DELRECURSIVE) $(subst /,$(PS),$(COMP_CLASS_OUT)) 188 -$(DELRECURSIVE) $(subst /,$(PS),$(COMP_GEN_OUT)) 189 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL))) 190