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 GUI examples of the Developers Guide. 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 66SAMPLE_NAME=GUIExamples 67SAMPLE_CLASS_OUT = $(OUT_CLASS)/$(SAMPLE_NAME) 68SAMPLE_GEN_OUT = $(OUT_MISC)/$(SAMPLE_NAME) 69 70 71APP1_NAME=DialogDocument 72APP1_JAR=$(SAMPLE_CLASS_OUT)/$(APP1_NAME).jar 73APP2_NAME=MessageBox 74APP2_JAR=$(SAMPLE_CLASS_OUT)/$(APP2_NAME).jar 75APP3_NAME=UnoDialogSample 76APP3_JAR=$(SAMPLE_CLASS_OUT)/$(APP3_NAME).jar 77APP4_NAME=UnoDialogSample2 78APP4_JAR=$(SAMPLE_CLASS_OUT)/$(APP4_NAME).jar 79APP5_NAME=UnoMenu 80APP5_JAR=$(SAMPLE_CLASS_OUT)/$(APP5_NAME).jar 81APP6_NAME=UnoMenu2 82APP6_JAR=$(SAMPLE_CLASS_OUT)/$(APP6_NAME).jar 83APP7_NAME=ImageControlSample 84APP7_JAR=$(SAMPLE_CLASS_OUT)/$(APP7_NAME).jar 85 86APP_JAVAFILES = \ 87 RoadmapItemStateChangeListener.java \ 88 UnoDialogSample.java \ 89 UnoMenu.java 90 91APP_CLASSFILES = $(patsubst %.java,$(SAMPLE_CLASS_OUT)/%.class,$(APP_JAVAFILES)) 92# $(SAMPLE_CLASS_OUT)/UnoDialogSample\&RoadmapItemStateChangeListener.class 93 94APP_CLASSNAMES = $(patsubst %.java,%.class,$(APP_JAVAFILES)) 95#APP_CLASSNAMES = $(patsubst $(SAMPLE_CLASS_OUT)/%.class,%.class,$(APP_CLASSFILES)) 96 97 98SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\ 99 $(PATH_SEPARATOR)$(SAMPLE_CLASS_OUT)) 100 101 102# Targets 103.PHONY: ALL 104ALL : \ 105 GUIExamples 106 107 108include $(SETTINGS)/stdtarget.mk 109 110 111$(APP_CLASSFILES) : $(APP_JAVAFILES) 112 -$(MKDIR) $(subst /,$(PS),$(@D)) 113 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(SAMPLE_CLASS_OUT) $(APP_JAVAFILES) 114 115$(SAMPLE_CLASS_OUT)/%.class : %.java $(APP_CLASSFILES) 116 -$(MKDIR) $(subst /,$(PS),$(@D)) 117 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(SAMPLE_CLASS_OUT) $< 118 119$(SAMPLE_CLASS_OUT)/%.mf : 120 -$(MKDIR) $(subst /,$(PS),$(@D)) 121 @echo Main-Class: com.sun.star.lib.loader.Loader> $@ 122 $(ECHOLINE)>> $@ 123 @echo Name: com/sun/star/lib/loader/Loader.class>> $@ 124 @echo Application-Class: $*>> $@ 125 126$(SAMPLE_CLASS_OUT)/%.jar : $(SAMPLE_CLASS_OUT)/%.mf $(SAMPLE_CLASS_OUT)/%.class $(APP_CLASSFILES) 127 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 128 -$(MKDIR) $(subst /,$(PS),$(@D)) 129 +cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_JAR) cvfm $(@F) $*.mf $*.class $(APP_CLASSNAMES) 130 +$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES) 131 132$(APP1_JAR) : $(SAMPLE_CLASS_OUT)/$(APP1_NAME).mf $(SAMPLE_CLASS_OUT)/$(APP1_NAME).class 133$(APP2_JAR) : $(SAMPLE_CLASS_OUT)/$(APP2_NAME).mf $(SAMPLE_CLASS_OUT)/$(APP2_NAME).class 134$(APP3_JAR) : $(SAMPLE_CLASS_OUT)/$(APP3_NAME).mf $(SAMPLE_CLASS_OUT)/$(APP3_NAME).class 135$(APP4_JAR) : $(SAMPLE_CLASS_OUT)/$(APP4_NAME).mf $(SAMPLE_CLASS_OUT)/$(APP4_NAME).class 136$(APP5_JAR) : $(SAMPLE_CLASS_OUT)/$(APP5_NAME).mf $(SAMPLE_CLASS_OUT)/$(APP5_NAME).class 137$(APP6_JAR) : $(SAMPLE_CLASS_OUT)/$(APP6_NAME).mf $(SAMPLE_CLASS_OUT)/$(APP6_NAME).class 138$(APP7_JAR) : $(SAMPLE_CLASS_OUT)/$(APP7_NAME).mf $(SAMPLE_CLASS_OUT)/$(APP7_NAME).class 139 140GUIExamples : $(APP1_JAR) $(APP2_JAR) $(APP3_JAR) $(APP4_JAR) $(APP5_JAR) $(APP6_JAR) $(APP7_JAR) 141 @echo -------------------------------------------------------------------------------- 142 @echo Please use one of the following commands to execute the examples! 143 @echo - 144 @echo $(MAKE) $(APP1_NAME).run 145 @echo $(MAKE) $(APP2_NAME).run 146 @echo $(MAKE) $(APP3_NAME).run 147 @echo $(MAKE) $(APP4_NAME).run 148 @echo $(MAKE) $(APP5_NAME).run 149 @echo $(MAKE) $(APP6_NAME).run 150 @echo $(MAKE) $(APP7_NAME).run 151 @echo -------- 152 153%.run: $(SAMPLE_CLASS_OUT)/%.jar 154 $(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $< 155 156$(APP7_NAME).run: $(SAMPLE_CLASS_OUT)/$(APP7_NAME).jar 157 $(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $< .$(PS)oologo.gif 158 159 160.PHONY: clean 161clean : 162 -$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) 163 -$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_GEN_OUT)) 164