1*122c3632SJürgen Schmidt#**************************************************************
2*122c3632SJürgen Schmidt#
3*122c3632SJürgen Schmidt#  Licensed to the Apache Software Foundation (ASF) under one
4*122c3632SJürgen Schmidt#  or more contributor license agreements.  See the NOTICE file
5*122c3632SJürgen Schmidt#  distributed with this work for additional information
6*122c3632SJürgen Schmidt#  regarding copyright ownership.  The ASF licenses this file
7*122c3632SJürgen Schmidt#  to you under the Apache License, Version 2.0 (the
8*122c3632SJürgen Schmidt#  "License"); you may not use this file except in compliance
9*122c3632SJürgen Schmidt#  with the License.  You may obtain a copy of the License at
10*122c3632SJürgen Schmidt#
11*122c3632SJürgen Schmidt#    http://www.apache.org/licenses/LICENSE-2.0
12*122c3632SJürgen Schmidt#
13*122c3632SJürgen Schmidt#  Unless required by applicable law or agreed to in writing,
14*122c3632SJürgen Schmidt#  software distributed under the License is distributed on an
15*122c3632SJürgen Schmidt#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*122c3632SJürgen Schmidt#  KIND, either express or implied.  See the License for the
17*122c3632SJürgen Schmidt#  specific language governing permissions and limitations
18*122c3632SJürgen Schmidt#  under the License.
19cdf0e10cSrcweir#
20*122c3632SJürgen Schmidt#**************************************************************
21cdf0e10cSrcweir
22cdf0e10cSrcweir# Builds the SimpleBootstrap_java example.
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ=../../../..
25cdf0e10cSrcweirSETTINGS=$(PRJ)/settings
26cdf0e10cSrcweir
27cdf0e10cSrcweirinclude $(SETTINGS)/settings.mk
28cdf0e10cSrcweirinclude $(SETTINGS)/std.mk
29cdf0e10cSrcweirinclude $(SETTINGS)/dk.mk
30cdf0e10cSrcweir
31cdf0e10cSrcweir# Define non-platform/compiler specific settings
32cdf0e10cSrcweirCOMPONENT_NAME=SimpleBootstrap_java
33cdf0e10cSrcweirOUT_COMP_CLASS = $(OUT_CLASS)/$(COMPONENT_NAME)
34cdf0e10cSrcweir
35cdf0e10cSrcweirCOMPONENT_JAR_NAME = $(COMPONENT_NAME).jar
36cdf0e10cSrcweirCOMPONENT_JAR = $(OUT_CLASS)/$(COMPONENT_JAR_NAME)
37cdf0e10cSrcweir
38cdf0e10cSrcweirJAVAFILES  = \
39cdf0e10cSrcweir	SimpleBootstrap_java.java
40cdf0e10cSrcweir
41cdf0e10cSrcweirCLASSFILES = $(patsubst %.java,$(OUT_COMP_CLASS)/%.class,$(JAVAFILES))
42cdf0e10cSrcweir
43cdf0e10cSrcweirSDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
44cdf0e10cSrcweir		$(PATH_SEPARATOR)$(OUT_COMP_CLASS))
45cdf0e10cSrcweir
46cdf0e10cSrcweir# Targets
47cdf0e10cSrcweir.PHONY: ALL
48cdf0e10cSrcweirALL : \
49cdf0e10cSrcweir	SimpleBootstrapJavaExample
50cdf0e10cSrcweir
51cdf0e10cSrcweirinclude $(SETTINGS)/stdtarget.mk
52cdf0e10cSrcweir
53cdf0e10cSrcweir$(CLASSFILES) : $(JAVAFILES)
54cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
55cdf0e10cSrcweir	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $(JAVAFILES)
56cdf0e10cSrcweir
57cdf0e10cSrcweir$(OUT_CLASS)/%.jar : manifest.mf $(CLASSFILES)
58cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
59cdf0e10cSrcweir	$(SDK_JAR) cvfm $@ $< -C $(OUT_COMP_CLASS) .
60cdf0e10cSrcweir	$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
61cdf0e10cSrcweir
62cdf0e10cSrcweirSimpleBootstrapJavaExample : $(COMPONENT_JAR)
63cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
64cdf0e10cSrcweir	@echo Please use the following command to execute the example!
65cdf0e10cSrcweir	@echo -
66cdf0e10cSrcweir	@echo $(MAKE) SimpleBootstrap_java.run
67cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
68cdf0e10cSrcweir
69cdf0e10cSrcweir# Setting the optional system property "com.sun.star.lib.loader.unopath" to the office
70cdf0e10cSrcweir# program path ensures that the conmfigured SDK office is used. If the system property
71cdf0e10cSrcweir# is not specified, the default office installation is used.
72cdf0e10cSrcweir%.run: $(COMPONENT_JAR)
73cdf0e10cSrcweir	$(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $(COMPONENT_JAR)
74cdf0e10cSrcweir
75cdf0e10cSrcweir.PHONY: clean
76cdf0e10cSrcweirclean :
77cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_CLASS))
78cdf0e10cSrcweir	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMPONENT_JAR)))
79