summaryrefslogtreecommitdiff
path: root/remotebridges/examples
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2000-10-16 10:43:46 +0000
committerJörg Budischewski <jbu@openoffice.org>2000-10-16 10:43:46 +0000
commit3c5a61821f920f1694cb92075f8abeab18a32ef9 (patch)
tree5eaf1edc11c759aa6c696d857dcbd23c55e4ba54 /remotebridges/examples
parent9530622d7c449aea7ee8205fb8e0bc05535888db (diff)
examples for interprocess communication added
Diffstat (limited to 'remotebridges/examples')
-rw-r--r--remotebridges/examples/makefile.mk151
1 files changed, 151 insertions, 0 deletions
diff --git a/remotebridges/examples/makefile.mk b/remotebridges/examples/makefile.mk
new file mode 100644
index 000000000000..de2f1a6f2af6
--- /dev/null
+++ b/remotebridges/examples/makefile.mk
@@ -0,0 +1,151 @@
+#*************************************************************************
+#
+# $RCSfile: makefile.mk,v $
+#
+# $Revision: 1.1 $
+#
+# last change: $Author: jbu $ $Date: 2000-10-16 11:43:46 $
+#
+# The Contents of this file are made available subject to the terms of
+# either of the following licenses
+#
+# - GNU Lesser General Public License Version 2.1
+# - Sun Industry Standards Source License Version 1.1
+#
+# Sun Microsystems Inc., October, 2000
+#
+# GNU Lesser General Public License Version 2.1
+# =============================================
+# Copyright 2000 by Sun Microsystems, Inc.
+# 901 San Antonio Road, Palo Alto, CA 94303, USA
+#
+# 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.
+#
+# 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.
+#
+# 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
+#
+#
+# Sun Industry Standards Source License Version 1.1
+# =================================================
+# The contents of this file are subject to the Sun Industry Standards
+# Source License Version 1.1 (the "License"); You may not use this file
+# except in compliance with the License. You may obtain a copy of the
+# License at http://www.openoffice.org/license.html.
+#
+# Software provided under this License is provided on an "AS IS" basis,
+# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+# See the License for the specific provisions governing your rights and
+# obligations concerning the Software.
+#
+# The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+#
+# Copyright: 2000 by Sun Microsystems, Inc.
+#
+# All Rights Reserved.
+#
+# Contributor(s): _______________________________________
+#
+#
+#
+#*************************************************************************
+
+PRJ=..
+
+PRJNAME=bridges
+TARGET=test
+LIBTARGET=NO
+TARGETTYPE=CUI
+ENABLE_EXCEPTIONS=TRUE
+NO_BSYMBOLIC=TRUE
+
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : svpre.mk
+.INCLUDE : settings.mk
+.INCLUDE : sv.mk
+
+# --- Files --------------------------------------------------------
+ALLIDLFILES = test_bridge.idl
+#CPPUMAKERFLAGS += -C
+
+
+UNOUCRDEP=$(SOLARBINDIR)$/applicat.rdb
+UNOUCRRDB=$(SOLARBINDIR)$/applicat.rdb
+
+# output directory (one dir for each project)
+UNOUCROUT=$(OUT)$/inc
+
+# adding to inludeoath
+INCPRE+=$(UNOUCROUT)
+
+UNOTYPES = \
+ com.sun.star.lang.XSingleServiceFactory \
+ com.sun.star.uno.XNamingService \
+ com.sun.star.lang.XMultiServiceFactory \
+ com.sun.star.lang.XTypeProvider \
+ com.sun.star.frame.XComponentLoader\
+ com.sun.star.registry.XSimpleRegistry \
+ com.sun.star.loader.XImplementationLoader \
+ com.sun.star.registry.XImplementationRegistration \
+ com.sun.star.lang.XComponent \
+ com.sun.star.bridge.XBridgeFactory\
+ com.sun.star.connection.XAcceptor\
+ com.sun.star.connection.XConnector\
+ com.sun.star.lang.XServiceInfo
+
+
+
+
+OBJFILES= \
+ $(OBJ)$/remoteserver.obj \
+ $(OBJ)$/remoteclient.obj
+
+
+APP1TARGET= remoteserver
+APP1OBJS= $(OBJ)$/remoteserver.obj
+
+.IF "$(OS)" == "LINUX"
+APP1STDLIBS+= -lstdc++
+.ENDIF
+
+APP1STDLIBS+= \
+ $(CPPULIB) \
+ $(COMPHELPER) \
+ $(CPPUHELPERLIB) \
+ $(VOSLIB) \
+ $(SALLIB) \
+ $(LIBCIMT)
+
+APP1DEF= $(MISC)$/$(APP1TARGET).def
+
+APP2TARGET= remoteclient
+APP2OBJS= $(OBJ)$/remoteclient.obj
+
+.IF "$(OS)" == "LINUX"
+APP2STDLIBS+= -lstdc++
+.ENDIF
+
+APP2STDLIBS+= \
+ $(CPPULIB) \
+ $(CPPUHELPERLIB) \
+ $(VOSLIB) \
+ $(SALLIB) \
+ $(LIBCIMT)
+
+
+
+# --- Targets ------------------------------------------------------
+
+.INCLUDE : target.mk
+