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
56PRJ=../../../..
57SETTINGS=$(PRJ)/settings
58
59include $(SETTINGS)/settings.mk
60include $(SETTINGS)/std.mk
61# include $(SETTINGS)/dk.mk
62
63# Define non-platform/compiler specific settings
64
65# we use the sample directory name for separating this example
66# from others in the output directory
67SAMPLE_NAME=EmbeddedObject
68SAMPLE_CLASS_OUT=$(OUT_CLASS)/$(SAMPLE_NAME)
69SAMPLE_GEN_OUT=$(OUT_MISC)/$(SAMPLE_NAME)
70
71COMP_NAME=OwnEmbeddedObject
72COMP_CLASS_OUT=$(SAMPLE_CLASS_OUT)/$(COMP_NAME)
73COMP_GEN_OUT=$(SAMPLE_GEN_OUT)/$(COMP_NAME)
74COMP_PACKAGE=$(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT)
75COMP_PACKAGE_URL=$(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
76COMP_JAR_NAME=$(COMP_NAME).uno.jar
77COMP_JAR=$(SAMPLE_CLASS_OUT)/$(COMP_JAR_NAME)
78COMP_JAR_MANIFEST=$(COMP_GEN_OUT)/$(COMP_NAME).Manifest
79COMP_UNOPKG_MANIFEST = $(COMP_GEN_OUT)/META-INF/manifest.xml
80COMP_REGISTERFLAG=$(COMP_GEN_OUT)$(PS)java_$(COMP_NAME)_register_component.flag
81COMP_COMPONENTS=$(COMP_NAME).components
82
83PACKAGE = org/openoffice/examples/embedding
84
85COMP_JAVAFILES  =\
86					OwnEmbeddedObject.java\
87					OwnEmbeddedObjectFactory.java\
88					EditorFrame.java
89
90COMP_CLASSFILES = $(patsubst %.java,$(COMP_CLASS_OUT)/%.class,$(COMP_JAVAFILES))
91
92SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
93		$(PATH_SEPARATOR)$(SAMPLE_CLASS_OUT)\
94		$(PATH_SEPARATOR)$(COMP_CLASS_OUT))
95
96
97# Targets
98.PHONY: ALL
99ALL : $(COMP_NAME)
100
101include $(SETTINGS)/stdtarget.mk
102
103$(COMP_GEN_OUT)/%.Manifest :
104	-$(MKDIR) $(subst \\,\,$(subst /,$(PS),$(@D)))
105	@echo RegistrationClassName: $(subst /,.,$(PACKAGE)).$(COMP_NAME)Factory> $@
106
107# component as well as application are dependent from the generated types
108# rule for component class files
109$(COMP_CLASS_OUT)/%.class : $(COMP_JAVAFILES)
110	-$(MKDIR) $(subst /,$(PS),$(@D))
111	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(COMP_CLASS_OUT) $(COMP_JAVAFILES)
112
113# rule for component jar file
114$(COMP_JAR) : $(COMP_JAR_MANIFEST) $(COMP_CLASSFILES)
115	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
116	-$(MKDIR) $(subst /,$(PS),$(@D))
117	$(SDK_JAR) cvfm $@  $< -C $(COMP_CLASS_OUT) .
118
119# rule for component package manifest
120$(COMP_GEN_OUT)/%/manifest.xml :
121	-$(MKDIR) $(subst /,$(PS),$(@D))
122	@echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
123	@echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@
124	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
125	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(SAMPLE_NAME).xcu$(QM)"/$(CSEP) >> $@
126	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@
127	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(COMP_NAME).components$(QM)"/$(CSEP)>> $@
128	@echo $(OSEP)/manifest:manifest$(CSEP) >> $@
129
130# rule for component package file
131$(COMP_PACKAGE) : $(COMP_JAR) $(COMP_UNOPKG_MANIFEST) $(COMP_NAME).components
132	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
133	-$(MKDIR) $(subst /,$(PS),$(@D))
134	$(SDK_ZIP) $@ $(SAMPLE_NAME).xcu
135	$(SDK_ZIP) $@ -u $(COMP_NAME).components
136	cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_ZIP) -u $@ $(COMP_JAR_NAME)
137	cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u $@ META-INF/manifest.xml
138
139$(COMP_REGISTERFLAG) : $(COMP_PACKAGE)
140ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
141	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
142	-$(MKDIR) $(subst \\,\,$(subst /,$(PS),$(@D)))
143	$(DEPLOYTOOL) $(COMP_PACKAGE_URL)
144	@echo flagged > $(subst /,$(PS),$@)
145else
146	@echo --------------------------------------------------------------------------------
147	@echo  If you want to install your component automatically, please set the environment
148	@echo  variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
149	@echo  possible if no office instance is running.
150	@echo --------------------------------------------------------------------------------
151endif
152
153$(COMP_NAME) : $(COMP_REGISTERFLAG)
154	@echo ------
155	@echo The $(COMP_NAME) component was installed if SDK_AUTO_DEPLOYMENT = YES.
156	@echo Load the "$(QM)$(SAMPLE_NAME).odt$(QM)" document to see how this component works.
157	@echo You can use this component inside your office installation, see the example
158	@echo description.
159	@echo -
160	@echo $(MAKE) $(SAMPLE_NAME).odt.load
161	@echo --------------------------------------------------------------------------------
162
163$(SAMPLE_NAME).odt.load : $(COMP_REGISTERFLAG)
164	"$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@)
165
166.PHONY: clean
167clean :
168	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_CLASS_OUT))
169	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_GEN_OUT))
170	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL)))
171