~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to TAO/tests/NestedUpcall/MT_Client_Test/server.bor

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# server.bor,v 1.2 2003/12/23 21:20:18 dhinton Exp
2
 
 
3
 
#
4
 
# Makefile for building the MT_Client_Test example
5
 
#
6
 
 
7
 
NAME = server
8
 
 
9
 
TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
10
 
 
11
 
OBJFILES = \
12
 
        $(OBJDIR)\MT_Client_TestC.obj \
13
 
        $(OBJDIR)\MT_Client_TestS.obj \
14
 
        $(OBJDIR)\MT_Object_i.obj \
15
 
        $(OBJDIR)\server.obj
16
 
 
17
 
CFLAGS = \
18
 
        $(ACE_CFLAGS) \
19
 
        $(TAO_CFLAGS) \
20
 
        $(TAO_PORTABLESERVER_CFLAGS)
21
 
 
22
 
LIBFILES = \
23
 
        $(ACE_LIB) \
24
 
        $(TAO_LIB) \
25
 
        $(TAO_PORTABLESERVER_LIB)
26
 
 
27
 
IDLFILES = \
28
 
        MT_Client_Test.idl
29
 
 
30
 
CPPDIR = .
31
 
 
32
 
IDLDIR = .
33
 
 
34
 
!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
35
 
 
36
 
#
37
 
# IDL Build rules
38
 
#
39
 
 
40
 
$(IDLDIR)\MT_Client_TestC.cpp $(IDLDIR)\MT_Client_TestS.cpp: $(IDLDIR)\MT_Client_Test.idl
41
 
        $(TAO_IDL) $**
42