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.
19 cdf0e10cSrcweir#
20 *122c3632SJürgen Schmidt#**************************************************************
21 cdf0e10cSrcweir
22 cdf0e10cSrcweir# Builds the Configuration example of the Developers Guide.
23 cdf0e10cSrcweir
24 cdf0e10cSrcweirPRJ=../../..
25 cdf0e10cSrcweirSETTINGS=$(PRJ)/settings
26 cdf0e10cSrcweir
27 cdf0e10cSrcweirinclude $(SETTINGS)/settings.mk
28 cdf0e10cSrcweirinclude $(SETTINGS)/std.mk
29 cdf0e10cSrcweirinclude $(SETTINGS)/dk.mk
30 cdf0e10cSrcweir
31 cdf0e10cSrcweir# Define non-platform/compiler specific settings
32 cdf0e10cSrcweirSAMPLE_NAME=DevGuideConfigExamples
33 cdf0e10cSrcweirSAMPLE_CLASS_OUT = $(OUT_CLASS)/$(SAMPLE_NAME)
34 cdf0e10cSrcweirSAMPLE_GEN_OUT = $(OUT_MISC)/$(SAMPLE_NAME)
35 cdf0e10cSrcweir
36 cdf0e10cSrcweir# some special macro names for separating the example jar stuff
37 cdf0e10cSrcweirAPP1_NAME=ConfigExamples
38 cdf0e10cSrcweirAPP1_CLASS_OUT=$(SAMPLE_CLASS_OUT)/$(APP1_NAME)
39 cdf0e10cSrcweirAPP1_GEN_OUT=$(SAMPLE_GEN_OUT)/$(APP1_NAME)
40 cdf0e10cSrcweirAPP1_JAR=$(SAMPLE_CLASS_OUT)/$(APP1_NAME).jar
41 cdf0e10cSrcweirAPP1_JAR_MANIFEST=$(APP1_GEN_OUT)/$(APP1_NAME).mf
42 cdf0e10cSrcweir
43 cdf0e10cSrcweirSDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
44 cdf0e10cSrcweir		$(PATH_SEPARATOR)$(SAMPLE_CLASS_OUT)\
45 cdf0e10cSrcweir		$(PATH_SEPARATOR)$(APP1_CLASS_OUT))
46 cdf0e10cSrcweir
47 cdf0e10cSrcweir# Targets
48 cdf0e10cSrcweir.PHONY: ALL
49 cdf0e10cSrcweirALL : $(SAMPLE_NAME)
50 cdf0e10cSrcweir
51 cdf0e10cSrcweirinclude $(SETTINGS)/stdtarget.mk
52 cdf0e10cSrcweir
53 cdf0e10cSrcweir# rule for example application class files
54 cdf0e10cSrcweir$(APP1_CLASS_OUT)/%.class : %.java
55 cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
56 cdf0e10cSrcweir	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(APP1_CLASS_OUT) $<
57 cdf0e10cSrcweir
58 cdf0e10cSrcweir# rule for client/example application manifest file
59 cdf0e10cSrcweir$(APP1_GEN_OUT)/%.mf :
60 cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
61 cdf0e10cSrcweir	@echo Main-Class: com.sun.star.lib.loader.Loader> $@
62 cdf0e10cSrcweir	$(ECHOLINE)>> $@
63 cdf0e10cSrcweir	@echo Name: com/sun/star/lib/loader/Loader.class>> $@
64 cdf0e10cSrcweir	@echo Application-Class: $*>> $@
65 cdf0e10cSrcweir
66 cdf0e10cSrcweir# rule for client/example application jar file
67 cdf0e10cSrcweir$(APP1_JAR) : $(APP1_JAR_MANIFEST) $(APP1_CLASS_OUT)/$(APP1_NAME).class
68 cdf0e10cSrcweir	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
69 cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
70 cdf0e10cSrcweir	$(SDK_JAR) cvfm $@  $< -C $(APP1_CLASS_OUT) .
71 cdf0e10cSrcweir	+$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
72 cdf0e10cSrcweir
73 cdf0e10cSrcweir$(SAMPLE_NAME) : $(APP1_JAR)
74 cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
75 cdf0e10cSrcweir	@echo Please use the following command to execute the example!
76 cdf0e10cSrcweir	@echo -
77 cdf0e10cSrcweir	@echo $(MAKE) $(APP1_NAME).run
78 cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
79 cdf0e10cSrcweir
80 cdf0e10cSrcweir%.run: $(SAMPLE_CLASS_OUT)/%.jar
81 cdf0e10cSrcweir	$(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $<
82 cdf0e10cSrcweir
83 cdf0e10cSrcweir.PHONY: clean
84 cdf0e10cSrcweirclean :
85 cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_CLASS_OUT))
86 cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_GEN_OUT))
87