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 CreatingDialogs example of the Developers Guide. 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 EXAMPLE_NAME=BaDCreatingDialogsExample 46 OUT_COMP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME) 47 48 COMPONENT_NAME=SampleDialog 49 COMPONENT_PACKAGE = $(OUT_BIN)/$(COMPONENT_NAME).$(UNOOXT_EXT) 50 COMPONENT_PACKAGE_URL = $(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMPONENT_NAME).$(UNOOXT_EXT)") 51 COMPONENT_JAR_NAME = $(COMPONENT_NAME).uno.jar 52 COMPONENT_JAR = $(OUT_CLASS)/$(COMPONENT_JAR_NAME) 53 COMPONENT_MANIFESTFILE = $(OUT_COMP_CLASS)/$(COMPONENT_NAME).uno.Manifest 54 COMPONENT_UNOPKG_MANIFEST = $(OUT_COMP_CLASS)/$(COMPONENT_NAME)/META-INF/manifest.xml 55 REGISTERFLAG = $(OUT_MISC)/devguide_basicanddialogs_creatingdialogs_register_component.flag 56 57 # often the java files are structured in a hierarchy similar to the package, 58 # for the example we know the package 59 PACKAGE = com.sun.star.comp.sdk.examples 60 61 JAVAFILES = \ 62 SampleDialog.java 63 64 CLASSFILES = $(patsubst %.java,$(OUT_COMP_CLASS)/%.class,$(JAVAFILES)) 65 66 $(COMPONENT_NAME)_CLASSFILES = SampleDialog.class \ 67 68 SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\ 69 $(PATH_SEPARATOR)$(OUT_COMP_CLASS)) 70 71 72 # Targets 73 .PHONY: ALL 74 ALL: $(EXAMPLE_NAME) 75 76 include $(SETTINGS)/stdtarget.mk 77 78 $(OUT_COMP_CLASS)/%.Manifest : 79 -$(MKDIR) $(subst /,$(PS),$(@D)) 80 @echo RegistrationClassName: $(PACKAGE).$(basename $(basename $(@F)))> $@ 81 82 $(OUT_COMP_CLASS)/%.class : %.java 83 -$(MKDIR) $(subst /,$(PS),$(@D)) 84 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $< 85 86 # rule for component jar file 87 $(COMPONENT_JAR) : $(COMPONENT_MANIFESTFILE) $(CLASSFILES) 88 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 89 -$(MKDIR) $(subst /,$(PS),$(@D)) 90 $(SDK_JAR) cvfm $@ $< -C $(OUT_COMP_CLASS) . 91 92 # rule for component package manifest 93 $(OUT_COMP_CLASS)/%/manifest.xml : 94 -$(MKDIR) $(subst /,$(PS),$(@D)) 95 @echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@ 96 @echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@ 97 @echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@ 98 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-component;type=Java$(QM)" >> $@ 99 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(OUT_COMP_CLASS)/,,$(@D))).uno.jar$(QM)"/$(CSEP) >> $@ 100 @echo $(OSEP)/manifest:manifest$(CSEP) >> $@ 101 102 # rule for component package file 103 $(COMPONENT_PACKAGE) : $(COMPONENT_JAR) $(COMPONENT_UNOPKG_MANIFEST) 104 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 105 -$(MKDIR) $(subst /,$(PS),$(@D)) 106 cd $(subst /,$(PS),$(OUT_CLASS)) && $(SDK_ZIP) ../bin/$(@F) $(<F) 107 cd $(subst /,$(PS),$(OUT_COMP_CLASS)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml 108 109 $(REGISTERFLAG) : $(COMPONENT_PACKAGE) 110 ifneq "$(SDK_AUTO_DEPLOYMENT)" "" 111 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 112 -$(MKDIR) $(subst /,$(PS),$(@D)) 113 $(DEPLOYTOOL) $(COMPONENT_PACKAGE_URL) 114 @echo flagged > $(subst /,$(PS),$@) 115 else 116 @echo -------------------------------------------------------------------------------- 117 @echo If you want to install your component automatically, please set the environment 118 @echo variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only 119 @echo possible if no office instance is running. 120 @echo -------------------------------------------------------------------------------- 121 endif 122 123 $(EXAMPLE_NAME) : $(REGISTERFLAG) 124 @echo -------------------------------------------------------------------------------- 125 @echo The SampleDialog Java component was installed if SDK_AUTO_DEPLOYMENT = YES. 126 @echo Please load the "$(QM)CreatingDialogs.odt$(QM)" document to use the component or use it 127 @echo by yourself in your office installation, see the example description. 128 @echo - 129 @echo $(MAKE) CreatingDialogs.odt.load 130 @echo -------------------------------------------------------------------------------- 131 132 CreatingDialogs.odt.load : $(REGISTERFLAG) 133 "$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@) 134 135 .PHONY: clean 136 clean : 137 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_CLASS)) 138 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMPONENT_PACKAGE_URL))) 139 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(REGISTERFLAG))) 140