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# Builds the UCB examples of the Developers Guide.
56
57PRJ=../../..
58SETTINGS=$(PRJ)/settings
59
60include $(SETTINGS)/settings.mk
61include $(SETTINGS)/std.mk
62include $(SETTINGS)/dk.mk
63
64# Define non-platform/compiler specific settings
65EXAMPLE_NAME=UCBExamples
66OUT_APP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME)
67OUT_APP_MISC = $(OUT_MISC)/$(EXAMPLE_NAME)
68
69APP1_NAME=ChildrenRetriever
70APP1_JAR=$(OUT_APP_CLASS)/$(APP1_NAME).jar
71APP2_NAME=DataStreamComposer
72APP2_JAR=$(OUT_APP_CLASS)/$(APP2_NAME).jar
73APP3_NAME=DataStreamRetriever
74APP3_JAR=$(OUT_APP_CLASS)/$(APP3_NAME).jar
75APP4_NAME=PropertiesComposer
76APP4_JAR=$(OUT_APP_CLASS)/$(APP4_NAME).jar
77APP5_NAME=PropertiesRetriever
78APP5_JAR=$(OUT_APP_CLASS)/$(APP5_NAME).jar
79APP6_NAME=ResourceCreator
80APP6_JAR=$(OUT_APP_CLASS)/$(APP6_NAME).jar
81APP7_NAME=ResourceManager
82APP7_JAR=$(OUT_APP_CLASS)/$(APP7_NAME).jar
83APP8_NAME=ResourceRemover
84APP8_JAR=$(OUT_APP_CLASS)/$(APP8_NAME).jar
85
86APP_JAVAFILES  = \
87	Helper.java \
88	MyActiveDataSink.java \
89	MyInputStream.java
90
91APP_CLASSFILES = $(patsubst %.java,$(OUT_APP_CLASS)/%.class,$(APP_JAVAFILES))
92APP_CLASSNAMES = $(patsubst %.java,%.class,$(APP_JAVAFILES))
93
94SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
95		$(PATH_SEPARATOR)$(OUT_APP_CLASS))
96
97OUT_APP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME)
98
99# Targets
100.PHONY: ALL
101ALL : \
102	UCBExamples
103
104include $(SETTINGS)/stdtarget.mk
105
106$(APP_CLASSFILES) : $(APP_JAVAFILES)
107	-$(MKDIR) $(subst /,$(PS),$(@D))
108	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_APP_CLASS) $(APP_JAVAFILES)
109
110$(OUT_APP_CLASS)/%.class : %.java $(APP_CLASSFILES)
111	-$(MKDIR) $(subst /,$(PS),$(@D))
112	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_APP_CLASS) $<
113
114$(OUT_APP_CLASS)/$(APP2_NAME).class : $(APP2_NAME).java $(OUT_APP_CLASS)/DataStreamRetriever.class $(APP_CLASSFILES)
115	-$(MKDIR) $(subst /,$(PS),$(@D))
116	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_APP_CLASS) $<
117
118$(OUT_APP_CLASS)/$(APP6_NAME).class : $(APP6_NAME).java $(OUT_APP_CLASS)/DataStreamRetriever.class $(APP_CLASSFILES)
119	-$(MKDIR) $(subst /,$(PS),$(@D))
120	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_APP_CLASS) $<
121
122$(OUT_APP_CLASS)/%.mf :
123	-$(MKDIR) $(subst /,$(PS),$(@D))
124	@echo Main-Class: com.sun.star.lib.loader.Loader> $@
125	$(ECHOLINE)>> $@
126	@echo Name: com/sun/star/lib/loader/Loader.class>> $@
127	@echo Application-Class: $*>> $@
128
129$(OUT_APP_CLASS)/%.jar : $(OUT_APP_CLASS)/%.mf $(OUT_APP_CLASS)/%.class $(APP_CLASSFILES)
130	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
131	-$(MKDIR) $(subst /,$(PS),$(@D))
132	+cd $(subst /,$(PS),$(OUT_APP_CLASS)) && $(SDK_JAR) cvfm $(@F) $*.mf $*.class $(APP_CLASSNAMES)
133	+$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
134
135$(APP2_JAR) : $(OUT_APP_CLASS)/$(APP2_NAME).mf $(OUT_APP_CLASS)/$(APP2_NAME).class $(OUT_APP_CLASS)/DataStreamRetriever.class $(APP_CLASSFILES)
136	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
137	-$(MKDIR) $(subst /,$(PS),$(@D))
138	+cd $(subst /,$(PS),$(OUT_APP_CLASS)) && $(SDK_JAR) cvfm $(@F) $(basename $(@F)).mf $(basename $(@F)).class DataStreamRetriever.class $(APP_CLASSNAMES)
139	+$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
140
141$(APP6_JAR) : $(OUT_APP_CLASS)/$(APP6_NAME).mf $(OUT_APP_CLASS)/$(APP6_NAME).class $(OUT_APP_CLASS)/DataStreamRetriever.class $(APP_CLASSFILES)
142	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
143	-$(MKDIR) $(subst /,$(PS),$(@D))
144	+cd $(subst /,$(PS),$(OUT_APP_CLASS)) && $(SDK_JAR) cvfm $(@F) $(basename $(@F)).mf $(basename $(@F)).class DataStreamRetriever.class $(APP_CLASSNAMES)
145	+$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
146
147
148$(APP1_JAR) : $(OUT_APP_CLASS)/$(APP1_NAME).mf $(OUT_APP_CLASS)/$(APP1_NAME).class
149$(APP2_JAR) : $(OUT_APP_CLASS)/$(APP2_NAME).mf $(OUT_APP_CLASS)/$(APP2_NAME).class
150$(APP3_JAR) : $(OUT_APP_CLASS)/$(APP3_NAME).mf $(OUT_APP_CLASS)/$(APP3_NAME).class
151$(APP4_JAR) : $(OUT_APP_CLASS)/$(APP4_NAME).mf $(OUT_APP_CLASS)/$(APP4_NAME).class
152$(APP5_JAR) : $(OUT_APP_CLASS)/$(APP5_NAME).mf $(OUT_APP_CLASS)/$(APP5_NAME).class
153$(APP6_JAR) : $(OUT_APP_CLASS)/$(APP6_NAME).mf $(OUT_APP_CLASS)/$(APP6_NAME).class
154$(APP7_JAR) : $(OUT_APP_CLASS)/$(APP7_NAME).mf $(OUT_APP_CLASS)/$(APP7_NAME).class
155$(APP8_JAR) : $(OUT_APP_CLASS)/$(APP8_NAME).mf $(OUT_APP_CLASS)/$(APP8_NAME).class
156
157UCBExamples : $(APP1_JAR) $(APP2_JAR) $(APP3_JAR) $(APP4_JAR) $(APP5_JAR) $(APP6_JAR) $(APP7_JAR) $(APP8_JAR)
158	@echo --------------------------------------------------------------------------------
159	@echo Please use one of the following commands to execute the examples!
160	@echo -
161	@echo $(MAKE) $(APP1_NAME).run
162	@echo $(MAKE) $(APP2_NAME).run
163	@echo $(MAKE) $(APP3_NAME).run
164	@echo $(MAKE) $(APP4_NAME).run
165	@echo $(MAKE) $(APP5_NAME).run
166	@echo $(MAKE) $(APP6_NAME).run
167	@echo $(MAKE) $(APP7_NAME).run
168	@echo $(MAKE) $(APP8_NAME).run
169	@echo --------------------------------------------------------------------------------
170
171%.run: $(OUT_APP_CLASS)/%.jar
172	-$(MKDIR) $(subst /,$(PS),$(OUT_APP_MISC))
173	$(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $< -workdir=$(OUT_APP_MISC)
174
175.PHONY: clean
176clean :
177	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_CLASS))
178