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 ProfUNO lifetime example of the Developers Guide
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
66COMPONENT_NAME=ProfUnoLifetime
67OUT_COMP_CLASS=$(OUT_CLASS)/$(COMPONENT_NAME)
68OUT_COMP_INC=$(OUT_INC)/$(COMPONENT_NAME)
69OUT_COMP_GEN=$(OUT_MISC)/$(COMPONENT_NAME)
70OUT_COMP_OBJ=$(OUT_OBJ)/$(COMPONENT_NAME)
71
72JAVAFILES  = \
73	MyUnoObject.java
74
75CLASSFILES = $(patsubst %.java,$(OUT_COMP_CLASS)/JavaComp/%.class,$(JAVAFILES))
76
77CXXFILES = object_lifetime.cxx
78
79OBJFILES = $(patsubst %.cxx,$(OUT_COMP_OBJ)/%.$(OBJ_EXT),$(CXXFILES))
80
81SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
82		$(PATH_SEPARATOR)$(OUT_COMP_CLASS))
83
84
85# Targets
86.PHONY: ALL
87ALL : \
88    ProUNOLifetimeExamples
89
90include $(SETTINGS)/stdtarget.mk
91
92$(OUT_COMP_CLASS)/%.class : %.java
93	-$(MKDIR) $(subst /,$(PS),$(@D))
94	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $<
95
96$(OUT_COMP_OBJ)/%.$(OBJ_EXT) : %.cxx $(SDKTYPEFLAG)
97	-$(MKDIR) $(subst /,$(PS),$(@D))
98	$(CC) $(CC_FLAGS) $(CC_INCLUDES) -I$(OUT_COMP_INC) $(CC_DEFINES) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $<
99
100$(OUT_BIN)/$(COMPONENT_NAME)$(EXE_EXT) : $(OBJFILES)
101	-$(MKDIR) $(subst /,$(PS),$(@D))
102	-$(MKDIR) $(subst /,$(PS),$(OUT_COMP_GEN))
103ifeq "$(OS)" "WIN"
104	$(LINK) $(EXE_LINK_FLAGS) /OUT:$@ /MAP:$(OUT_COMP_GEN)/$(subst $(EXE_EXT),.map,$(@F)) \
105	  $(OBJFILES) $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB)
106else
107	$(LINK) $(EXE_LINK_FLAGS) $(LINK_LIBS) -o $@ $(OBJFILES) \
108	  $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB) $(STDC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALHELPERDYLIB) $(SALDYLIB)
109ifeq "$(OS)" "MACOSX"
110	$(INSTALL_NAME_URELIBS_BIN)  $@
111endif
112endif
113
114ProUNOLifetimeExamples : $(OUT_BIN)/$(COMPONENT_NAME)$(EXE_EXT) $(OUT_COMP_CLASS)/MyUnoObject.class
115	@echo --------------------------------------------------------------------------------
116	@echo Please use one of the following commands to execute the examples!
117	@echo -
118	@echo $(MAKE) MyUnoObject.run
119	@echo $(MAKE) ProfUnoLifetime.runexe
120	@echo --------------------------------------------------------------------------------
121
122%.run: $(OUT_COMP_CLASS)/%.class
123	$(SDK_JAVA) -classpath "$(SDK_CLASSPATH)" $(basename $@)
124
125%.runexe: $(OUT_BIN)/%$(EXE_EXT)
126	cd $(subst /,$(PS),$(OUT_BIN)) && $(basename $@)
127
128.PHONY: clean
129clean :
130	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_INC))
131	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_CLASS))
132	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_GEN))
133	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_OBJ))
134	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(OUT_BIN)/$(COMPONENT_NAME)$(EXE_EXT)))
135