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 OOoBean 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=ScriptSelector
67SAMPLE_CLASS_OUT = $(OUT_CLASS)/ScriptingFramework/$(SAMPLE_NAME)
68SAMPLE_GEN_OUT = $(OUT_MISC)/ScriptingFramework
69
70SCRIPT_NAME=ScriptSelector
71SCRIPT_CLASS_OUT=$(SAMPLE_CLASS_OUT)/$(SCRIPT_NAME)
72SCRIPT_GEN_OUT=$(SAMPLE_GEN_OUT)/$(SCRIPT_NAME)
73SCRIPT_JAR_NAME=$(SCRIPT_NAME).jar
74SCRIPT_JAR=$(SAMPLE_CLASS_OUT)/$(SCRIPT_JAR_NAME)
75SCRIPT_PACKAGE = $(OUT_BIN)/$(SCRIPT_NAME).$(UNOOXT_EXT)
76SCRIPT_PACKAGE_URL = $(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(SCRIPT_NAME).$(UNOOXT_EXT)")
77SCRIPT_REGISTERFLAG=$(SCRIPT_GEN_OUT)$(PS)devguide_scriptingframework_$(SCRIPT_NAME)_register.flag
78
79JAVAFILES  = \
80	ScriptSelector/ScriptSelector.java
81
82CLASSFILES = $(patsubst %.java,$(SCRIPT_CLASS_OUT)/%.class,$(subst $(SAMPLE_NAME)/,,$(JAVAFILES)))
83
84SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
85		$(PATH_SEPARATOR)$(SAMPLE_CLASS_OUT))
86
87# Targets
88.PHONY: ALL
89ALL : ScriptSelectorExample
90
91include $(SETTINGS)/stdtarget.mk
92
93$(CLASSFILES) : $(JAVAFILES)
94	-$(MKDIR) $(subst /,$(PS),$(@D))
95	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(SCRIPT_CLASS_OUT) $(JAVAFILES)
96
97$(SCRIPT_JAR) : $(CLASSFILES) $(SCRIPT_NAME)/container.gif $(SCRIPT_NAME)/script.gif $(SCRIPT_NAME)/soffice.gif
98	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
99	-$(MKDIR) $(subst /,$(PS),$(@D))
100	$(COPY) $(subst /,$(PS),$(SCRIPT_NAME)/container.gif) $(subst /,$(PS),$(SCRIPT_CLASS_OUT))
101	$(COPY) $(subst /,$(PS),$(SCRIPT_NAME)/script.gif) $(subst /,$(PS),$(SCRIPT_CLASS_OUT))
102	$(COPY) $(subst /,$(PS),$(SCRIPT_NAME)/soffice.gif) $(subst /,$(PS),$(SCRIPT_CLASS_OUT))
103	$(SDK_JAR) cvf $@ -C $(SCRIPT_CLASS_OUT) .
104
105# rule for component package file
106$(SCRIPT_PACKAGE) : $(SCRIPT_JAR) META-INF/manifest.xml $(SCRIPT_NAME)/parcel-descriptor.xml
107	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
108	-$(MKDIR) $(subst /,$(PS),$(@D))
109	$(SDK_ZIP) $@ META-INF/manifest.xml $(SCRIPT_NAME)/parcel-descriptor.xml
110	cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)/..) && $(SDK_ZIP) -u ../../bin/$(@F) $(SAMPLE_NAME)/$(SCRIPT_JAR_NAME)
111
112$(SCRIPT_REGISTERFLAG) : $(SCRIPT_PACKAGE)
113ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
114	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
115	-$(MKDIR) $(subst /,$(PS),$(@D))
116	$(DEPLOYTOOL) $(SCRIPT_PACKAGE_URL)
117	@echo flagged > $(subst /,$(PS),$@)
118else
119	@echo --------------------------------------------------------------------------------
120	@echo  If you want to install your component automatically, please set the environment
121	@echo  variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
122	@echo  possible if no office instance is running.
123	@echo --------------------------------------------------------------------------------
124endif
125
126
127ScriptSelectorExample : $(SCRIPT_REGISTERFLAG)
128	@echo --------------------------------------------------------------------------------
129	@echo The "$(QM)$(SCRIPT_NAME)$(QM)" scripting package was installed in your office installation
130	@echo if SDK_AUTO_DEPLOYMENT = YES. If you want to run the script, start the Office
131	@echo and use the Tools/Macros/Run Macro menu item.
132	@echo You can also load the document "$(QM)$(SCRIPT_NAME).odt$(QM)" and press the button to run
133	@echo the script.
134	@echo -
135	@echo $(MAKE) $(SCRIPT_NAME).odt.load
136	@echo --------------------------------------------------------------------------------
137
138$(SCRIPT_NAME).odt.load : $(SCRIPT_REGISTERFLAG)
139	"$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@)
140
141%.run: $(CLASSFILES)
142	$(SDK_JAVA) -classpath "$(SDK_CLASSPATH)" $(subst /,.,$(PACKAGE)).$(basename $@)
143
144%.dbg: $(JAR1_JAR)
145	jdb -classpath "$(SDK_CLASSPATH)" $(subst /,.,$(PACKAGE)).$(basename $@)
146
147.PHONY: clean
148clean :
149	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_CLASS_OUT))
150	-$(DELRECURSIVE) $(subst /,$(PS),$(SCRIPT_GEN_OUT))
151	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(SCRIPT_PACKAGE_URL)))
152
153