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