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