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.
19cdf0e10cSrcweir#
20*122c3632SJürgen Schmidt#**************************************************************
21cdf0e10cSrcweir
22cdf0e10cSrcweir# Builds the ProfUNO cpp binding example of the Developers Guide
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
32cdf0e10cSrcweirSAMPLE_NAME=ProfUnoCppBinding
33cdf0e10cSrcweirSAMPLE_INC_OUT = $(OUT_INC)/$(SAMPLE_NAME)
34cdf0e10cSrcweirSAMPLE_GEN_OUT = $(OUT_MISC)/$(SAMPLE_NAME)
35cdf0e10cSrcweirSAMPLE_OBJ_OUT=$(OUT_OBJ)/$(SAMPLE_NAME)
36cdf0e10cSrcweir
37cdf0e10cSrcweirAPP1_NAME=office_connect
38cdf0e10cSrcweirAPP1_BINARY=$(OUT_BIN)/$(APP1_NAME)$(EXE_EXT)
39cdf0e10cSrcweir
40cdf0e10cSrcweirAPP2_NAME=string_samples
41cdf0e10cSrcweirAPP2_BINARY=$(OUT_BIN)/$(APP2_NAME)$(EXE_EXT)
42cdf0e10cSrcweir
43cdf0e10cSrcweirENV_OFFICE_TYPES=-env:URE_MORE_TYPES=$(URLPREFIX)$(OFFICE_TYPES)
44cdf0e10cSrcweir
45cdf0e10cSrcweirCXXFILES = \
46cdf0e10cSrcweir	 office_connect.cxx \
47cdf0e10cSrcweir	 string_samples.cxx
48cdf0e10cSrcweir
49cdf0e10cSrcweir# Targets
50cdf0e10cSrcweir.PHONY: ALL
51cdf0e10cSrcweirALL : \
52cdf0e10cSrcweir    ProUNOCppBindingExample
53cdf0e10cSrcweir
54cdf0e10cSrcweirinclude $(SETTINGS)/stdtarget.mk
55cdf0e10cSrcweir
56cdf0e10cSrcweir$(SAMPLE_OBJ_OUT)/%.$(OBJ_EXT) : %.cxx $(SDKTYPEFLAG)
57cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
58cdf0e10cSrcweir	$(CC) $(CC_FLAGS) $(CC_INCLUDES) -I$(SAMPLE_INC_OUT) $(CC_DEFINES) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $<
59cdf0e10cSrcweir
60cdf0e10cSrcweir$(OUT_BIN)/%$(EXE_EXT) : $(SAMPLE_OBJ_OUT)/%.$(OBJ_EXT)
61cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
62cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(SAMPLE_GEN_OUT))
63cdf0e10cSrcweirifeq "$(OS)" "WIN"
64cdf0e10cSrcweir	$(LINK) $(EXE_LINK_FLAGS) /OUT:$@ /MAP:$(SAMPLE_GEN_OUT)/$(subst $(EXE_EXT),.map,$(@F)) \
65cdf0e10cSrcweir	  $< $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB)
66cdf0e10cSrcweirelse
67cdf0e10cSrcweir	$(LINK) $(EXE_LINK_FLAGS) $(LINK_LIBS) -o $@ $< \
68cdf0e10cSrcweir	  $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB) $(STDC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALHELPERDYLIB) $(SALDYLIB)
69cdf0e10cSrcweirifeq "$(OS)" "MACOSX"
70cdf0e10cSrcweir	$(INSTALL_NAME_URELIBS_BIN)  $@
71cdf0e10cSrcweirendif
72cdf0e10cSrcweirendif
73cdf0e10cSrcweir
74cdf0e10cSrcweir$(OUT_BIN)/office_connect$(EXE_EXT) : $(SAMPLE_OBJ_OUT)/office_connect.$(OBJ_EXT)
75cdf0e10cSrcweir
76cdf0e10cSrcweir$(OUT_BIN)/string_samples$(EXE_EXT) : $(SAMPLE_OBJ_OUT)/string_samples.$(OBJ_EXT)
77cdf0e10cSrcweir
78cdf0e10cSrcweirProUNOCppBindingExample : $(APP1_BINARY) $(APP2_BINARY)
79cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
80cdf0e10cSrcweir	@echo Note: For the "$(QM)$(APP1_NAME)$(QM)" example you need a running office listening
81cdf0e10cSrcweir	@echo $(SQM)      $(SQM)on port 2083. The example use the defaultBootstrap_InitialComponentContext method and provides
82cdf0e10cSrcweir	@echo $(SQM)      $(SQM)the additional office types via the UNO environment variable -env:URE_MORE_TYPES=...
83cdf0e10cSrcweir	@echo $(SQM)      $(SQM)Before you can run this example you have to start your office in listening mode.
84cdf0e10cSrcweir	@echo -
85cdf0e10cSrcweir	@echo $(SQM)  $(SQM)soffice "$(QM)-accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager$(QM)"
86cdf0e10cSrcweir	@echo -----
87cdf0e10cSrcweir	@echo Please use one of the following commands to execute the examples!
88cdf0e10cSrcweir	@echo -
89cdf0e10cSrcweir	@echo $(MAKE) $(APP1_NAME).run
90cdf0e10cSrcweir	@echo $(MAKE) $(APP2_NAME).run
91cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
92cdf0e10cSrcweir
93cdf0e10cSrcweir%.run: $(OUT_BIN)/%$(EXE_EXT)
94cdf0e10cSrcweir	cd $(subst /,$(PS),$(OUT_BIN)) && $(basename $@)
95cdf0e10cSrcweir
96cdf0e10cSrcweir$(API1_NAME).run: $(API1_BINARY)
97cdf0e10cSrcweir	cd $(subst /,$(PS),$(OUT_BIN)) && $(basename $@) $(ENV_OFFICE_TYPES)
98cdf0e10cSrcweir
99cdf0e10cSrcweir.PHONY: clean
100cdf0e10cSrcweirclean :
101cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_INC_OUT))
102cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_GEN_OUT))
103cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_OBJ_OUT))
104cdf0e10cSrcweir	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(OUT_BIN)/$(APP1_NAME)*))
105cdf0e10cSrcweir	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(OUT_BIN)/$(APP2_NAME)*))
106