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 CreatingDialogs 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 66SAMPLE_NAME=BaDToolkitControls 67SAMPLE_GEN_OUT=$(OUT_MISC)/$(SAMPLE_NAME) 68 69COMP_NAME=ToolkitControls 70COMP_GEN_OUT=$(SAMPLE_GEN_OUT)/$(COMP_NAME) 71COMP_PACKAGE = $(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT) 72COMP_PACKAGE_URL = $(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)") 73COMP_UNOPKG_MANIFEST = $(COMP_GEN_OUT)/META-INF/manifest.xml 74COMP_REGISTERFLAG=$(COMP_GEN_OUT)$(PS)devguide_basic_$(COMP_NAME)_register_component.flag 75 76COMP_LIBRARY_FILES=\ 77 ToolkitControls/dialog.xlb\ 78 ToolkitControls/FileDialog.xba\ 79 ToolkitControls/FileDialogDlg.xdl\ 80 ToolkitControls/MultiPage.xba\ 81 ToolkitControls/MultiPageDlg.xdl\ 82 ToolkitControls/ProgressBar.xba\ 83 ToolkitControls/ProgressBarDlg.xdl\ 84 ToolkitControls/script.xlb\ 85 ToolkitControls/ScrollBar.xba\ 86 ToolkitControls/ScrollBarDlg.xdl 87 88# Targets 89.PHONY: ALL 90ALL : $(SAMPLE_NAME) 91 92include $(SETTINGS)/stdtarget.mk 93 94# rule for component package manifest 95$(COMP_GEN_OUT)/%/manifest.xml : 96 -$(MKDIR) $(subst /,$(PS),$(@D)) 97 @echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@ 98 @echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@ 99 @echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@ 100 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.basic-library$(QM)" >> $@ 101 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(COMP_NAME)$(QM)"/$(CSEP) >> $@ 102 @echo $(OSEP)/manifest:manifest$(CSEP) >> $@ 103 104# rule for component package file 105$(COMP_PACKAGE) : $(COMP_UNOPKG_MANIFEST) $(COMP_LIBRARY_FILES) 106 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 107 -$(MKDIR) $(subst /,$(PS),$(@D)) 108 $(SDK_ZIP) $@ ToolkitControls/dialog.xlb \ 109 ToolkitControls/FileDialog.xba ToolkitControls/FileDialogDlg.xdl \ 110 ToolkitControls/MultiPage.xba ToolkitControls/MultiPageDlg.xdl \ 111 ToolkitControls/ProgressBar.xba ToolkitControls/ProgressBarDlg.xdl \ 112 ToolkitControls/script.xlb ToolkitControls/ScrollBar.xba \ 113 ToolkitControls/ScrollBarDlg.xdl 114 cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml 115 116$(COMP_REGISTERFLAG) : $(COMP_PACKAGE) 117ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES" 118 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 119 -$(MKDIR) $(subst /,$(PS),$(@D)) 120 $(DEPLOYTOOL) $(COMP_PACKAGE_URL) 121 @echo flagged > $(subst /,$(PS),$@) 122else 123 @echo -------------------------------------------------------------------------------- 124 @echo If you want to install your component automatically, please set the environment 125 @echo variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only 126 @echo possible if no office instance is running. 127 @echo -------------------------------------------------------------------------------- 128endif 129 130$(SAMPLE_NAME) : $(COMP_REGISTERFLAG) 131 @echo -------------------------------------------------------------------------------- 132 @echo The "$(QM)ToolkitControls$(QM)" library was installed in your office installation 133 @echo if SDK_AUTO_DEPLOYMENT = YES. You can use it in the BASIC IDE as a normal 134 @echo Basic library. 135 @echo You can also load the document "$(QM)$(COMP_NAME).odt$(QM)" and press a button 136 @echo to run one of the example macros. 137 @echo - 138 @echo $(MAKE) $(COMP_NAME).odt.load 139 @echo -------------------------------------------------------------------------------- 140 141$(COMP_NAME).odt.load : $(COMP_REGISTERFLAG) 142 "$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@) 143 144.PHONY: clean 145clean : 146 -$(DELRECURSIVE) $(subst /,$(PS),$(COMP_GEN_OUT)) 147 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL))) 148