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

« back to all changes in this revision

Viewing changes to TAO/examples/Load_Balancing/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
 
#
2
 
# server.bor,v 1.2 2003/12/20 14:05:46 jwillemsen Exp
3
 
#
4
 
# Makefile for building the Load_Balancing example
5
 
#
6
 
 
7
 
NAME = server
8
 
 
9
 
OBJFILES = \
10
 
        $(OBJDIR)\IdentityC.obj \
11
 
        $(OBJDIR)\Load_BalancerC.obj \
12
 
        $(OBJDIR)\IdentityS.obj \
13
 
        $(OBJDIR)\Identity_Server.obj \
14
 
        $(OBJDIR)\Identity_i.obj
15
 
 
16
 
IDLFILES = \
17
 
        $(IDLDIR)\Load_Balancer.idl \
18
 
        $(IDLDIR)\Identity.idl
19
 
 
20
 
CPPDIR = .;..
21
 
 
22
 
IDLDIR = .
23
 
 
24
 
!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
25
 
 
26
 
#
27
 
# IDL Build rules
28
 
#
29
 
 
30
 
$(IDLDIR)\Load_BalancerC.cpp $(IDLDIR)\Load_BalancerS.cpp: $(IDLDIR)\Load_Balancer.idl
31
 
        $(TAO_IDL) $**
32
 
 
33
 
$(IDLDIR)\IdentityC.cpp $(IDLDIR)\IdentityS.cpp: $(IDLDIR)\Identity.idl
34
 
        $(TAO_IDL) $**
35