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
56# Builds the Java NotesAccess example of the SDK.
57
58PRJ=../../..
59SETTINGS=$(PRJ)/settings
60
61include $(SETTINGS)/settings.mk
62include $(SETTINGS)/std.mk
63include $(SETTINGS)/dk.mk
64
65# Define non-platform/compiler specific settings
66EXAMPLE_NAME=NotesAccessExample
67OUT_APP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME)
68
69APP_NAME=NotesAccess
70APP_JAR=$(OUT_APP_CLASS)/$(APP_NAME).jar
71
72JAVAFILES  = \
73	NotesAccess.java
74
75CLASSFILES = $(patsubst %.java,$(OUT_APP_CLASS)/%.class,$(JAVAFILES))
76
77SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
78		$(PATH_SEPARATOR)$(OUT_APP_CLASS))
79
80
81# Targets
82.PHONY: ALL
83ALL : \
84    JavaNotesAccessExample
85
86include $(SETTINGS)/stdtarget.mk
87
88NotesAPIs :
89	@echo --------------------------------------------------------------------------------
90	@echo This example uses external APIs from Lotus Notes/Domino. You can download a
91	@echo trial version from "$(QM)http://www.lotus.com/downloads$(QM)". After installation
92	@echo please do the following:
93	@echo  1. Add the install path to the PATH or LD_LIBRARY_PATH of this shell.
94	@echo     e.g "$(QM)PATH=C:\Program Files\lotus\notes;...$(QM)"
95	@echo  2. Add the "$(QM)Notes.jar$(QM)" to your CLASSPATH
96	@echo     e.g. "$(QM)CLASSPATH=C:\Program Files\lotus\notes\Notes.jar;$(QM)"
97	@echo --------------------------------------------------------------------------------
98
99
100$(CLASSFILES) : $(JAVAFILES)
101	-$(MKDIR) $(subst /,$(PS),$(@D))
102	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_APP_CLASS) $(JAVAFILES)
103
104$(OUT_APP_CLASS)/%.mf :
105	-$(MKDIR) $(subst /,$(PS),$(@D))
106	@echo Class-Path: Notes.jar> $@
107	@echo Main-Class: com.sun.star.lib.loader.Loader>> $@
108	$(ECHOLINE)>> $@
109	@echo Name: com/sun/star/lib/loader/Loader.class>> $@
110	@echo Application-Class: $*>> $@
111
112$(APP_JAR) : $(OUT_APP_CLASS)/$(APP_NAME).mf $(OUT_APP_CLASS)/$(APP_NAME).class
113	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
114	-$(MKDIR) $(subst /,$(PS),$(@D))
115	+cd $(subst /,$(PS),$(OUT_APP_CLASS)) && $(SDK_JAR) cvfm $(@F) $(APP_NAME).mf $(APP_NAME).class
116	+$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
117
118JavaNotesAccessExample : NotesAPIs $(APP_JAR)
119	@echo --------------------------------------------------------------------------------
120	@echo NOTE: Before you run this example make sure that the exaternal "$(QM)Notes.jar$(QM)" can
121	@echo be found besides "$(QM)$(APP_JAR)"$(QM)
122	@echo and that the PATH variable includes the Notes installation directory.
123	@echo -
124	@echo Please use the following command to execute the example!
125	@echo -
126	@echo $(MAKE) NotesAccess.run
127	@echo --------------------------------------------------------------------------------
128
129%.run: $(APP_JAR)
130	$(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $< "$(QM)$(QM)" "$(QM)$(QM)" "$(QM)$(QM)" Stocks.nsf
131
132.PHONY: clean
133clean :
134	-$(DELRECURSIVE) $(subst \\,\,$(subst /,$(PS),$(OUT_APP_CLASS)))
135