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 OfficeDevDestopEnvironment example 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 66EXAMPLE_NAME=OfficeDevDesktopEnv 67OUT_APP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME) 68 69APP1_NAME=DesktopExample 70APP1_JAR=$(OUT_APP_CLASS)/$(APP1_NAME).jar 71 72APP1_JAVAFILES = \ 73 CustomizeView.java \ 74 Desk.java \ 75 DocumentView.java \ 76 FunctionHelper.java \ 77 Interceptor.java \ 78 IOnewayLink.java \ 79 IShutdownListener.java \ 80 JavaWindowPeerFake.java \ 81 NativeView.java \ 82 OfficeConnect.java \ 83 OnewayExecutor.java \ 84 StatusListener.java \ 85 StatusView.java \ 86 ViewContainer.java 87 88APP1_CLASSFILES = $(patsubst %.java,$(OUT_APP_CLASS)/%.class,$(APP1_JAVAFILES)) 89APP1_CLASSNAMES = $(patsubst %.java,%.class,$(APP1_JAVAFILES)) \ 90 CustomizeView$(QUOTE)$$ClickListener.class \ 91 DocumentView$(QUOTE)$$1.class \ 92 DocumentView$(QUOTE)$$Reactor.class 93 94 95SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\ 96 $(PATH_SEPARATOR)$(OUT_APP_CLASS)) 97 98ifeq "$(OS)" "WIN" 99SUBDIR= nativelib/windows 100else 101SUBDIR= nativelib/unix 102endif 103 104# Targets 105.PHONY: ALL 106ALL : $(SUBDIR) \ 107 $(EXAMPLE_NAME) 108 109include $(SETTINGS)/stdtarget.mk 110 111.PHONY : $(SUBDIR) 112$(SUBDIR) : 113 $(MAKE) -C $@ 114 115$(APP1_CLASSFILES) : $(APP1_JAVAFILES) 116 -$(MKDIR) $(subst /,$(PS),$(@D)) 117 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_APP_CLASS) $(APP1_JAVAFILES) 118 119$(OUT_APP_CLASS)/$(APP1_NAME).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: Desk>> $@ 125 126$(APP1_JAR) : $(OUT_APP_CLASS)/$(APP1_NAME).mf $(APP1_CLASSFILES) 127 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 128 -$(MKDIR) $(subst /,$(PS),$(@D)) 129 +cd $(subst /,$(PS),$(OUT_APP_CLASS)) && $(SDK_JAR) cvfm $(@F) $(basename $(@F)).mf $(APP1_CLASSNAMES) 130 +$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES) 131 132$(EXAMPLE_NAME) : $(APP1_JAR) 133 @echo -------------------------------------------------------------------------------- 134 @echo Please use the following command to execute the example! 135 @echo - 136 @echo $(MAKE) DesktopExample.run 137 @echo ------ 138 @echo If you want to run the $(JAR1_JAR) file please set your 139 @echo CLASSPATH = $(SDK_CLASSPATH) 140 @echo Start the example with jar -jar $(JAR1_JAR) 141 @echo -------------------------------------------------------------------------------- 142 143%.run: $(OUT_APP_CLASS)/%.jar 144 $(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $< 145 146.PHONY: clean 147clean : 148 $(MAKE) -C $(SUBDIR) clean 149 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_CLASS)) 150