xref: /aoo42x/main/bridges/test/makefile.mk (revision 7871dc3e)
1*7871dc3eSAndrew Rist#**************************************************************
2*7871dc3eSAndrew Rist#
3*7871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
4*7871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
5*7871dc3eSAndrew Rist#  distributed with this work for additional information
6*7871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
7*7871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
8*7871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
9*7871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
10*7871dc3eSAndrew Rist#
11*7871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12*7871dc3eSAndrew Rist#
13*7871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
14*7871dc3eSAndrew Rist#  software distributed under the License is distributed on an
15*7871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*7871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
17*7871dc3eSAndrew Rist#  specific language governing permissions and limitations
18*7871dc3eSAndrew Rist#  under the License.
19*7871dc3eSAndrew Rist#
20*7871dc3eSAndrew Rist#**************************************************************
21*7871dc3eSAndrew Rist
22*7871dc3eSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ=..
25cdf0e10cSrcweir
26cdf0e10cSrcweirPRJNAME=bridges
27cdf0e10cSrcweirTARGET=test
28cdf0e10cSrcweirLIBTARGET=NO
29cdf0e10cSrcweirTARGETTYPE=CUI
30cdf0e10cSrcweirENABLE_EXCEPTIONS=TRUE
31cdf0e10cSrcweir
32cdf0e10cSrcweir# --- Settings -----------------------------------------------------
33cdf0e10cSrcweir
34cdf0e10cSrcweir.INCLUDE :  settings.mk
35cdf0e10cSrcweir
36cdf0e10cSrcweir# --- Files --------------------------------------------------------
37cdf0e10cSrcweirALLIDLFILES = test_bridge.idl
38cdf0e10cSrcweirCPPUMAKERFLAGS += -C
39cdf0e10cSrcweir
40cdf0e10cSrcweir
41cdf0e10cSrcweirUNOUCRDEP=$(SOLARBINDIR)$/udkapi.rdb  $(BIN)$/test.rdb
42cdf0e10cSrcweirUNOUCRRDB=$(SOLARBINDIR)$/udkapi.rdb  $(BIN)$/test.rdb
43cdf0e10cSrcweir
44cdf0e10cSrcweir# output directory (one dir for each project)
45cdf0e10cSrcweirUNOUCROUT=$(OUT)$/inc
46cdf0e10cSrcweir
47cdf0e10cSrcweir# adding to inludeoath
48cdf0e10cSrcweirINCPRE+=$(UNOUCROUT)
49cdf0e10cSrcweirCFLAGS += -I..$/source$/remote$/urp
50cdf0e10cSrcweir
51cdf0e10cSrcweirUNOTYPES = \
52cdf0e10cSrcweir		com.sun.star.uno.XWeak\
53cdf0e10cSrcweir		com.sun.star.uno.XNamingService\
54cdf0e10cSrcweir		com.sun.star.uno.XAggregation \
55cdf0e10cSrcweir		com.sun.star.uno.TypeClass\
56cdf0e10cSrcweir		com.sun.star.io.XInputStream\
57cdf0e10cSrcweir		com.sun.star.io.XOutputStream\
58cdf0e10cSrcweir		com.sun.star.lang.XInitialization \
59cdf0e10cSrcweir		com.sun.star.lang.XSingleServiceFactory \
60cdf0e10cSrcweir		com.sun.star.lang.XMultiServiceFactory \
61cdf0e10cSrcweir		com.sun.star.lang.XTypeProvider \
62cdf0e10cSrcweir		com.sun.star.registry.XSimpleRegistry \
63cdf0e10cSrcweir		com.sun.star.loader.XImplementationLoader \
64cdf0e10cSrcweir		com.sun.star.registry.XImplementationRegistration \
65cdf0e10cSrcweir		com.sun.star.corba.giop.TargetAddress \
66cdf0e10cSrcweir		com.sun.star.corba.giop.TargetAddressGroup \
67cdf0e10cSrcweir		com.sun.star.lang.XComponent \
68cdf0e10cSrcweir		com.sun.star.bridge.XBridgeFactory\
69cdf0e10cSrcweir		com.sun.star.connection.XAcceptor\
70cdf0e10cSrcweir		com.sun.star.connection.XConnector\
71cdf0e10cSrcweir		com.sun.star.beans.Property\
72cdf0e10cSrcweir		com.sun.star.corba.giop.RequestHeader_1_2\
73cdf0e10cSrcweir     		com.sun.star.container.XSet\
74cdf0e10cSrcweir		com.sun.star.lang.XServiceInfo\
75cdf0e10cSrcweir		test.XTestFactory \
76cdf0e10cSrcweir		com.sun.star.test.performance.XPerformanceTest \
77cdf0e10cSrcweir		com.sun.star.lang.XMain \
78cdf0e10cSrcweir		com.sun.star.lang.XMultiComponentFactory \
79cdf0e10cSrcweir		com.sun.star.lang.XSingleComponentFactory
80cdf0e10cSrcweir
81cdf0e10cSrcweirJARFILES = jurt.jar unoil.jar
82cdf0e10cSrcweir
83cdf0e10cSrcweirOBJFILES=	\
84cdf0e10cSrcweir			$(OBJ)$/testserver.obj \
85cdf0e10cSrcweir			$(OBJ)$/testclient.obj \
86cdf0e10cSrcweir			$(OBJ)$/testcomp.obj  \
87cdf0e10cSrcweir			$(OBJ)$/testsameprocess.obj
88cdf0e10cSrcweir
89cdf0e10cSrcweir
90cdf0e10cSrcweirAPP2TARGET=	testserver
91cdf0e10cSrcweirAPP2OBJS=	$(OBJ)$/testserver.obj \
92cdf0e10cSrcweir		$(OBJ)$/testcomp.obj
93cdf0e10cSrcweir
94cdf0e10cSrcweir.IF "$(OS)" == "LINUX"
95cdf0e10cSrcweirAPP2STDLIBS+= -lstdc++
96cdf0e10cSrcweir.ENDIF
97cdf0e10cSrcweir
98cdf0e10cSrcweirAPP2STDLIBS+=	\
99cdf0e10cSrcweir			$(CPPULIB)	\
100cdf0e10cSrcweir			$(CPPUHELPERLIB)	\
101cdf0e10cSrcweir			$(SALLIB)
102cdf0e10cSrcweir
103cdf0e10cSrcweirAPP3TARGET=	testclient
104cdf0e10cSrcweirAPP3OBJS=	$(OBJ)$/testclient.obj \
105cdf0e10cSrcweir		$(OBJ)$/testcomp.obj
106cdf0e10cSrcweir
107cdf0e10cSrcweir.IF "$(OS)" == "LINUX"
108cdf0e10cSrcweirAPP3STDLIBS+= -lstdc++
109cdf0e10cSrcweir.ENDIF
110cdf0e10cSrcweir
111cdf0e10cSrcweirAPP3STDLIBS+=	\
112cdf0e10cSrcweir			$(CPPULIB)	\
113cdf0e10cSrcweir			$(CPPUHELPERLIB)	\
114cdf0e10cSrcweir			$(SALLIB)
115cdf0e10cSrcweir
116cdf0e10cSrcweir#----------------------------------
117cdf0e10cSrcweir
118cdf0e10cSrcweirAPP4TARGET=	testsameprocess
119cdf0e10cSrcweirAPP4OBJS=	$(OBJ)$/testsameprocess.obj \
120cdf0e10cSrcweir		$(OBJ)$/testcomp.obj
121cdf0e10cSrcweir
122cdf0e10cSrcweir.IF "$(OS)" == "LINUX"
123cdf0e10cSrcweirAPP4STDLIBS+= -lstdc++
124cdf0e10cSrcweir.ENDIF
125cdf0e10cSrcweir
126cdf0e10cSrcweirAPP4STDLIBS+=	\
127cdf0e10cSrcweir			$(CPPULIB)	\
128cdf0e10cSrcweir			$(CPPUHELPERLIB)	\
129cdf0e10cSrcweir			$(SALLIB)
130cdf0e10cSrcweir
131cdf0e10cSrcweirAPP4DEF=	$(MISC)$/$(APP4TARGET).def
132cdf0e10cSrcweir
133cdf0e10cSrcweir#----------------------------------
134cdf0e10cSrcweir
135cdf0e10cSrcweir# APP5TARGET=	testoffice
136cdf0e10cSrcweir# APP5OBJS=	$(OBJ)$/testoffice.obj \
137cdf0e10cSrcweir# 		$(OBJ)$/testcomp.obj
138cdf0e10cSrcweir
139cdf0e10cSrcweir# .IF "$(OS)" == "LINUX"
140cdf0e10cSrcweir# APP5STDLIBS+= -lstdc++
141cdf0e10cSrcweir# .ENDIF
142cdf0e10cSrcweir
143cdf0e10cSrcweir# APP5STDLIBS+=	\
144cdf0e10cSrcweir# 			$(CPPULIB)	\
145cdf0e10cSrcweir# 			$(CPPUHELPERLIB)\
146cdf0e10cSrcweir# 			$(SALLIB)
147cdf0e10cSrcweir
148cdf0e10cSrcweir# APP5DEF=	$(MISC)$/$(APP5TARGET).def
149cdf0e10cSrcweir
150cdf0e10cSrcweir
151cdf0e10cSrcweir# --- Targets ------------------------------------------------------
152cdf0e10cSrcweir
153cdf0e10cSrcweir.INCLUDE :  target.mk
154cdf0e10cSrcweir
155cdf0e10cSrcweirALLTAR : 	$(BIN)$/test.rdb	\
156cdf0e10cSrcweir	$(BIN)$/server.rdb	\
157cdf0e10cSrcweir	$(BIN)$/client.rdb
158cdf0e10cSrcweir
159cdf0e10cSrcweir$(BIN)$/test.rdb: $(ALLIDLFILES)
160cdf0e10cSrcweir	$(IDLC) -I$(PRJ) -I$(SOLARIDLDIR) -O$(BIN) $?
161cdf0e10cSrcweir	$(REGMERGE) $@ /UCR $(BIN)$/{$(?:f:s/.idl/.urd/)}
162cdf0e10cSrcweir	touch $@
163cdf0e10cSrcweir
164cdf0e10cSrcweir$(BIN)$/client.rdb: $(BIN)$/test.rdb
165cdf0e10cSrcweir	rm -f $(BIN)$/client.rdb
166cdf0e10cSrcweir	$(REGMERGE) $@ / $(BIN)$/test.rdb $(SOLARBINDIR)$/udkapi.rdb
167cdf0e10cSrcweir
168cdf0e10cSrcweir$(BIN)$/server.rdb: $(BIN)$/test.rdb
169cdf0e10cSrcweir	rm -f $(BIN)$/client.rdb
170cdf0e10cSrcweir	$(REGMERGE) $@ / $(BIN)$/test.rdb $(SOLARBINDIR)$/udkapi.rdb
171cdf0e10cSrcweir
172