1122c3632SJürgen Schmidt#**************************************************************
2122c3632SJürgen Schmidt#
3122c3632SJürgen Schmidt#  Licensed to the Apache Software Foundation (ASF) under one
4122c3632SJürgen Schmidt#  or more contributor license agreements.  See the NOTICE file
5122c3632SJürgen Schmidt#  distributed with this work for additional information
6122c3632SJürgen Schmidt#  regarding copyright ownership.  The ASF licenses this file
7122c3632SJürgen Schmidt#  to you under the Apache License, Version 2.0 (the
8122c3632SJürgen Schmidt#  "License"); you may not use this file except in compliance
9122c3632SJürgen Schmidt#  with the License.  You may obtain a copy of the License at
10122c3632SJürgen Schmidt#
11122c3632SJürgen Schmidt#    http://www.apache.org/licenses/LICENSE-2.0
12122c3632SJürgen Schmidt#
13122c3632SJürgen Schmidt#  Unless required by applicable law or agreed to in writing,
14122c3632SJürgen Schmidt#  software distributed under the License is distributed on an
15122c3632SJürgen Schmidt#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16122c3632SJürgen Schmidt#  KIND, either express or implied.  See the License for the
17122c3632SJürgen Schmidt#  specific language governing permissions and limitations
18122c3632SJürgen Schmidt#  under the License.
19cdf0e10cSrcweir#
20122c3632SJürgen Schmidt#**************************************************************
21cdf0e10cSrcweir
22cdf0e10cSrcweir# Builds the SimpleBootstrap_cpp example of the SDK.
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ=../../../..
25cdf0e10cSrcweirSETTINGS=$(PRJ)/settings
26cdf0e10cSrcweir
27cdf0e10cSrcweirinclude $(SETTINGS)/settings.mk
28cdf0e10cSrcweirinclude $(SETTINGS)/std.mk
29cdf0e10cSrcweirinclude $(SETTINGS)/dk.mk
30cdf0e10cSrcweir
31cdf0e10cSrcweir# Define non-platform/compiler specific settings
32cdf0e10cSrcweirAPP_NAME=SimpleBootstrap_cpp
33cdf0e10cSrcweir
34cdf0e10cSrcweirOUT_APP_INC = $(OUT_INC)/$(APP_NAME)
35cdf0e10cSrcweirOUT_APP_GEN = $(OUT_MISC)/$(APP_NAME)
36cdf0e10cSrcweirOUT_APP_OBJ=$(OUT_OBJ)/$(APP_NAME)
37cdf0e10cSrcweir
38cdf0e10cSrcweirCXXFILES = SimpleBootstrap_cpp.cxx
39cdf0e10cSrcweir
40cdf0e10cSrcweirOBJFILES = $(patsubst %.cxx,$(OUT_SLO_COMP)/%.$(OBJ_EXT),$(CXXFILES))
41cdf0e10cSrcweir
42cdf0e10cSrcweir# Targets
43cdf0e10cSrcweir.PHONY: ALL
44cdf0e10cSrcweirALL : \
45cdf0e10cSrcweir	SimpleBootstrapCppExample
46cdf0e10cSrcweir
47cdf0e10cSrcweirinclude $(SETTINGS)/stdtarget.mk
48cdf0e10cSrcweir
49cdf0e10cSrcweir$(OUT_APP_OBJ)/%.$(OBJ_EXT) : %.cxx $(SDKTYPEFLAG)
50cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
51cdf0e10cSrcweir	$(CC) $(CC_FLAGS) $(CC_INCLUDES) -I$(OUT_APP_INC) $(CC_DEFINES) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $<
52cdf0e10cSrcweir
53cdf0e10cSrcweir$(OUT_BIN)/_$(APP_NAME)$(EXE_EXT) : $(OUT_APP_OBJ)/$(APP_NAME).$(OBJ_EXT)
54cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
55cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(OUT_APP_GEN))
56cdf0e10cSrcweirifeq "$(OS)" "WIN"
57cdf0e10cSrcweir	$(LINK) $(EXE_LINK_FLAGS) /OUT:$@ /MAP:$(OUT_APP_GEN)/$(basename $(@F)).map \
58*b597708bSHerbert Dürr	  $< $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB)
59cdf0e10cSrcweirelse
60cdf0e10cSrcweir	$(LINK) $(EXE_LINK_FLAGS) $(LINK_LIBS) -o $@ $< \
61*b597708bSHerbert Dürr	  $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STDC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALHELPERDYLIB) $(SALDYLIB)
62cdf0e10cSrcweirifeq "$(OS)" "MACOSX"
63cdf0e10cSrcweir	$(INSTALL_NAME_URELIBS_BIN)  $@
64cdf0e10cSrcweirendif
65cdf0e10cSrcweirendif
66cdf0e10cSrcweir
67cdf0e10cSrcweir$(OUT_BIN)/$(APP_NAME)$(EXE_EXT) : $(OUT_BIN)/_$(APP_NAME)$(EXE_EXT)
68cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
69cdf0e10cSrcweir	$(COPY) $(subst /,$(PS),$(BIN_DIR)/unoapploader$(EXE_EXT)) $(subst /,$(PS),$@)
70cdf0e10cSrcweir# workaround for touch problem under Windows with full qualified paths
71cdf0e10cSrcweir	make -t $@
72cdf0e10cSrcweir
73cdf0e10cSrcweirSimpleBootstrapCppExample : $(OUT_BIN)/$(APP_NAME)$(EXE_EXT)
74cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
75cdf0e10cSrcweir	@echo Please use the following command to execute the example!
76cdf0e10cSrcweir	@echo -
77cdf0e10cSrcweir	@echo $(MAKE) SimpleBootstrap_cpp.run
78cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
79cdf0e10cSrcweir
80cdf0e10cSrcweir%.run: $(OUT_BIN)/SimpleBootstrap_cpp$(EXE_EXT)
81cdf0e10cSrcweir	cd $(subst /,$(PS),$(OUT_BIN)) && $(basename $@)
82cdf0e10cSrcweir
83cdf0e10cSrcweir.PHONY: clean
84cdf0e10cSrcweirclean :
85cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_INC))
86cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_GEN))
87cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_OBJ))
88cdf0e10cSrcweir	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(OUT_BIN)/*SimpleBootstrap*))
89