office-gobmx/bridges/test/makefile.mk

189 lines
5.1 KiB
Makefile
Raw Normal View History

2000-09-18 09:29:57 -05:00
#*************************************************************************
#
# OpenOffice.org - a multi-platform office productivity suite
2000-09-18 09:29:57 -05:00
#
# $RCSfile: makefile.mk,v $
2000-09-18 09:29:57 -05:00
#
# $Revision: 1.10 $
2000-09-18 09:29:57 -05:00
#
# last change: $Author: vg $ $Date: 2006-11-21 15:12:29 $
2000-09-18 09:29:57 -05:00
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 09:29:57 -05:00
#
#
# GNU Lesser General Public License Version 2.1
# =============================================
# Copyright 2005 by Sun Microsystems, Inc.
# 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 09:29:57 -05:00
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1, as published by the Free Software Foundation.
2000-09-18 09:29:57 -05:00
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
2000-09-18 09:29:57 -05:00
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
2000-09-18 09:29:57 -05:00
#
#*************************************************************************
PRJ=..
PRJNAME=bridges
TARGET=test
LIBTARGET=NO
TARGETTYPE=CUI
ENABLE_EXCEPTIONS=TRUE
EXTERNAL_WARNINGS_NOT_ERRORS := TRUE
2000-09-18 09:29:57 -05:00
# --- Settings -----------------------------------------------------
.INCLUDE : settings.mk
# --- Files --------------------------------------------------------
ALLIDLFILES = test_bridge.idl
CPPUMAKERFLAGS += -C
2000-09-18 09:29:57 -05:00
UNOUCRDEP=$(SOLARBINDIR)$/udkapi.rdb $(BIN)$/test.rdb
UNOUCRRDB=$(SOLARBINDIR)$/udkapi.rdb $(BIN)$/test.rdb
2000-09-18 09:29:57 -05:00
# output directory (one dir for each project)
UNOUCROUT=$(OUT)$/inc
# adding to inludeoath
INCPRE+=$(UNOUCROUT)
CFLAGS += -I..$/source$/remote$/urp
UNOTYPES = \
com.sun.star.uno.XWeak\
com.sun.star.uno.XNamingService\
com.sun.star.uno.XAggregation \
com.sun.star.uno.TypeClass\
com.sun.star.io.XInputStream\
com.sun.star.io.XOutputStream\
com.sun.star.lang.XInitialization \
com.sun.star.lang.XSingleServiceFactory \
com.sun.star.lang.XMultiServiceFactory \
com.sun.star.lang.XTypeProvider \
com.sun.star.registry.XSimpleRegistry \
com.sun.star.loader.XImplementationLoader \
com.sun.star.registry.XImplementationRegistration \
com.sun.star.corba.giop.TargetAddress \
com.sun.star.corba.giop.TargetAddressGroup \
com.sun.star.lang.XComponent \
com.sun.star.bridge.XBridgeFactory\
com.sun.star.connection.XAcceptor\
com.sun.star.connection.XConnector\
com.sun.star.beans.Property\
com.sun.star.corba.giop.RequestHeader_1_2\
com.sun.star.container.XSet\
com.sun.star.lang.XServiceInfo\
test.XTestFactory \
com.sun.star.test.performance.XPerformanceTest \
2001-05-29 01:09:02 -05:00
com.sun.star.lang.XMain \
com.sun.star.lang.XMultiComponentFactory \
com.sun.star.lang.XSingleComponentFactory
2000-09-18 09:29:57 -05:00
JARFILES = jurt.jar unoil.jar
2000-09-18 09:29:57 -05:00
OBJFILES= \
$(OBJ)$/testserver.obj \
$(OBJ)$/testclient.obj \
$(OBJ)$/testcomp.obj \
$(OBJ)$/testsameprocess.obj
2000-09-18 09:29:57 -05:00
APP2TARGET= testserver
APP2OBJS= $(OBJ)$/testserver.obj \
$(OBJ)$/testcomp.obj
.IF "$(OS)" == "LINUX"
APP2STDLIBS+= -lstdc++
.ENDIF
APP2STDLIBS+= \
$(CPPULIB) \
$(CPPUHELPERLIB) \
$(SALLIB) \
$(LIBCIMT)
APP3TARGET= testclient
APP3OBJS= $(OBJ)$/testclient.obj \
$(OBJ)$/testcomp.obj
.IF "$(OS)" == "LINUX"
APP3STDLIBS+= -lstdc++
.ENDIF
APP3STDLIBS+= \
$(CPPULIB) \
$(CPPUHELPERLIB) \
$(SALLIB) \
$(LIBCIMT)
#----------------------------------
APP4TARGET= testsameprocess
APP4OBJS= $(OBJ)$/testsameprocess.obj \
$(OBJ)$/testcomp.obj
.IF "$(OS)" == "LINUX"
APP4STDLIBS+= -lstdc++
.ENDIF
APP4STDLIBS+= \
$(CPPULIB) \
$(CPPUHELPERLIB) \
$(SALLIB) \
$(LIBCIMT)
APP4DEF= $(MISC)$/$(APP4TARGET).def
#----------------------------------
# APP5TARGET= testoffice
# APP5OBJS= $(OBJ)$/testoffice.obj \
# $(OBJ)$/testcomp.obj
2000-09-18 09:29:57 -05:00
# .IF "$(OS)" == "LINUX"
# APP5STDLIBS+= -lstdc++
# .ENDIF
2000-09-18 09:29:57 -05:00
# APP5STDLIBS+= \
# $(CPPULIB) \
# $(CPPUHELPERLIB)\
# $(SALLIB) \
# $(LIBCIMT)
2000-09-18 09:29:57 -05:00
# APP5DEF= $(MISC)$/$(APP5TARGET).def
2000-09-18 09:29:57 -05:00
# --- Targets ------------------------------------------------------
.INCLUDE : target.mk
ALLTAR : $(BIN)$/test.rdb \
$(BIN)$/server.rdb \
$(BIN)$/client.rdb
2000-09-18 09:29:57 -05:00
$(BIN)$/test.rdb: $(ALLIDLFILES)
2001-03-20 06:15:51 -06:00
+idlc -I$(PRJ) -I$(SOLARIDLDIR) -O$(BIN) $?
2000-09-18 09:29:57 -05:00
+regmerge $@ /UCR $(BIN)$/{$(?:f:s/.idl/.urd/)}
touch $@
2001-03-20 06:15:51 -06:00
$(BIN)$/client.rdb: $(BIN)$/test.rdb
+rm -f $(BIN)$/client.rdb
+regmerge $@ / $(BIN)$/test.rdb $(SOLARBINDIR)$/udkapi.rdb
$(BIN)$/server.rdb: $(BIN)$/test.rdb
+rm -f $(BIN)$/client.rdb
+regmerge $@ / $(BIN)$/test.rdb $(SOLARBINDIR)$/udkapi.rdb