1 #*************************************************************************
2 #
3 #  The Contents of this file are made available subject to the terms of
4 #  the BSD license.
5 #
6 #  Copyright 2000, 2010 Oracle and/or its affiliates.
7 #  All rights reserved.
8 #
9 #  Redistribution and use in source and binary forms, with or without
10 #  modification, are permitted provided that the following conditions
11 #  are met:
12 #  1. Redistributions of source code must retain the above copyright
13 #     notice, this list of conditions and the following disclaimer.
14 #  2. Redistributions in binary form must reproduce the above copyright
15 #     notice, this list of conditions and the following disclaimer in the
16 #     documentation and/or other materials provided with the distribution.
17 #  3. Neither the name of Sun Microsystems, Inc. nor the names of its
18 #     contributors may be used to endorse or promote products derived
19 #     from this software without specific prior written permission.
20 #
21 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 #  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 #  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 #  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 #  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 #  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 #  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
28 #  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 #  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
30 #  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
31 #  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #
33 #**************************************************************************
34 
35 # Builds the SimpleBootstrap_cpp example of the SDK.
36 
37 PRJ=../../../..
38 SETTINGS=$(PRJ)/settings
39 
40 include $(SETTINGS)/settings.mk
41 include $(SETTINGS)/std.mk
42 include $(SETTINGS)/dk.mk
43 
44 # Define non-platform/compiler specific settings
45 APP_NAME=SimpleBootstrap_cpp
46 
47 OUT_APP_INC = $(OUT_INC)/$(APP_NAME)
48 OUT_APP_GEN = $(OUT_MISC)/$(APP_NAME)
49 OUT_APP_OBJ=$(OUT_OBJ)/$(APP_NAME)
50 
51 CXXFILES = SimpleBootstrap_cpp.cxx
52 
53 OBJFILES = $(patsubst %.cxx,$(OUT_SLO_COMP)/%.$(OBJ_EXT),$(CXXFILES))
54 
55 # Targets
56 .PHONY: ALL
57 ALL : \
58 	SimpleBootstrapCppExample
59 
60 include $(SETTINGS)/stdtarget.mk
61 
62 $(OUT_APP_OBJ)/%.$(OBJ_EXT) : %.cxx $(SDKTYPEFLAG)
63 	-$(MKDIR) $(subst /,$(PS),$(@D))
64 	$(CC) $(CC_FLAGS) $(CC_INCLUDES) -I$(OUT_APP_INC) $(CC_DEFINES) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $<
65 
66 $(OUT_BIN)/_$(APP_NAME)$(EXE_EXT) : $(OUT_APP_OBJ)/$(APP_NAME).$(OBJ_EXT)
67 	-$(MKDIR) $(subst /,$(PS),$(@D))
68 	-$(MKDIR) $(subst /,$(PS),$(OUT_APP_GEN))
69 ifeq "$(OS)" "WIN"
70 	$(LINK) $(EXE_LINK_FLAGS) /OUT:$@ /MAP:$(OUT_APP_GEN)/$(basename $(@F)).map \
71 	  $< $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB)
72 else
73 	$(LINK) $(EXE_LINK_FLAGS) $(LINK_LIBS) -o $@ $< \
74 	  $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB) $(STDC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALHELPERDYLIB) $(SALDYLIB)
75 ifeq "$(OS)" "MACOSX"
76 	$(INSTALL_NAME_URELIBS_BIN)  $@
77 endif
78 endif
79 
80 $(OUT_BIN)/$(APP_NAME)$(EXE_EXT) : $(OUT_BIN)/_$(APP_NAME)$(EXE_EXT)
81 	-$(MKDIR) $(subst /,$(PS),$(@D))
82 	$(COPY) $(subst /,$(PS),$(BIN_DIR)/unoapploader$(EXE_EXT)) $(subst /,$(PS),$@)
83 # workaround for touch problem under Windows with full qualified paths
84 	make -t $@
85 
86 SimpleBootstrapCppExample : $(OUT_BIN)/$(APP_NAME)$(EXE_EXT)
87 	@echo --------------------------------------------------------------------------------
88 	@echo Please use the following command to execute the example!
89 	@echo -
90 	@echo $(MAKE) SimpleBootstrap_cpp.run
91 	@echo --------------------------------------------------------------------------------
92 
93 %.run: $(OUT_BIN)/SimpleBootstrap_cpp$(EXE_EXT)
94 	cd $(subst /,$(PS),$(OUT_BIN)) && $(basename $@)
95 
96 .PHONY: clean
97 clean :
98 	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_INC))
99 	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_GEN))
100 	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_OBJ))
101 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(OUT_BIN)/*SimpleBootstrap*))
102