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 Java NotesAccess example of the SDK.
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 cdf0e10cSrcweirEXAMPLE_NAME=NotesAccessExample
33 cdf0e10cSrcweirOUT_APP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME)
34 cdf0e10cSrcweir
35 cdf0e10cSrcweirAPP_NAME=NotesAccess
36 cdf0e10cSrcweirAPP_JAR=$(OUT_APP_CLASS)/$(APP_NAME).jar
37 cdf0e10cSrcweir
38 cdf0e10cSrcweirJAVAFILES  = \
39 cdf0e10cSrcweir	NotesAccess.java
40 cdf0e10cSrcweir
41 cdf0e10cSrcweirCLASSFILES = $(patsubst %.java,$(OUT_APP_CLASS)/%.class,$(JAVAFILES))
42 cdf0e10cSrcweir
43 cdf0e10cSrcweirSDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
44 cdf0e10cSrcweir		$(PATH_SEPARATOR)$(OUT_APP_CLASS))
45 cdf0e10cSrcweir
46 cdf0e10cSrcweir
47 cdf0e10cSrcweir# Targets
48 cdf0e10cSrcweir.PHONY: ALL
49 cdf0e10cSrcweirALL : \
50 cdf0e10cSrcweir    JavaNotesAccessExample
51 cdf0e10cSrcweir
52 cdf0e10cSrcweirinclude $(SETTINGS)/stdtarget.mk
53 cdf0e10cSrcweir
54 cdf0e10cSrcweirNotesAPIs :
55 cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
56 cdf0e10cSrcweir	@echo This example uses external APIs from Lotus Notes/Domino. You can download a
57 cdf0e10cSrcweir	@echo trial version from "$(QM)http://www.lotus.com/downloads$(QM)". After installation
58 cdf0e10cSrcweir	@echo please do the following:
59 cdf0e10cSrcweir	@echo  1. Add the install path to the PATH or LD_LIBRARY_PATH of this shell.
60 cdf0e10cSrcweir	@echo     e.g "$(QM)PATH=C:\Program Files\lotus\notes;...$(QM)"
61 cdf0e10cSrcweir	@echo  2. Add the "$(QM)Notes.jar$(QM)" to your CLASSPATH
62 cdf0e10cSrcweir	@echo     e.g. "$(QM)CLASSPATH=C:\Program Files\lotus\notes\Notes.jar;$(QM)"
63 cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
64 cdf0e10cSrcweir
65 cdf0e10cSrcweir
66 cdf0e10cSrcweir$(CLASSFILES) : $(JAVAFILES)
67 cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
68 cdf0e10cSrcweir	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_APP_CLASS) $(JAVAFILES)
69 cdf0e10cSrcweir
70 cdf0e10cSrcweir$(OUT_APP_CLASS)/%.mf :
71 cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
72 cdf0e10cSrcweir	@echo Class-Path: Notes.jar> $@
73 cdf0e10cSrcweir	@echo Main-Class: com.sun.star.lib.loader.Loader>> $@
74 cdf0e10cSrcweir	$(ECHOLINE)>> $@
75 cdf0e10cSrcweir	@echo Name: com/sun/star/lib/loader/Loader.class>> $@
76 cdf0e10cSrcweir	@echo Application-Class: $*>> $@
77 cdf0e10cSrcweir
78 cdf0e10cSrcweir$(APP_JAR) : $(OUT_APP_CLASS)/$(APP_NAME).mf $(OUT_APP_CLASS)/$(APP_NAME).class
79 cdf0e10cSrcweir	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
80 cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
81 cdf0e10cSrcweir	+cd $(subst /,$(PS),$(OUT_APP_CLASS)) && $(SDK_JAR) cvfm $(@F) $(APP_NAME).mf $(APP_NAME).class
82 cdf0e10cSrcweir	+$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
83 cdf0e10cSrcweir
84 cdf0e10cSrcweirJavaNotesAccessExample : NotesAPIs $(APP_JAR)
85 cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
86 cdf0e10cSrcweir	@echo NOTE: Before you run this example make sure that the exaternal "$(QM)Notes.jar$(QM)" can
87 cdf0e10cSrcweir	@echo be found besides "$(QM)$(APP_JAR)"$(QM)
88 cdf0e10cSrcweir	@echo and that the PATH variable includes the Notes installation directory.
89 cdf0e10cSrcweir	@echo -
90 cdf0e10cSrcweir	@echo Please use the following command to execute the example!
91 cdf0e10cSrcweir	@echo -
92 cdf0e10cSrcweir	@echo $(MAKE) NotesAccess.run
93 cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
94 cdf0e10cSrcweir
95 cdf0e10cSrcweir%.run: $(APP_JAR)
96 cdf0e10cSrcweir	$(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $< "$(QM)$(QM)" "$(QM)$(QM)" "$(QM)$(QM)" Stocks.nsf
97 cdf0e10cSrcweir
98 cdf0e10cSrcweir.PHONY: clean
99 cdf0e10cSrcweirclean :
100 cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst \\,\,$(subst /,$(PS),$(OUT_APP_CLASS)))
101