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

« back to all changes in this revision

Viewing changes to TAO/tao/RTPortableServer/Makefile.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
 
# Makefile.bor,v 1.10 2003/12/29 17:41:05 bala Exp
2
 
#
3
 
# Makefile for building the TAO RTPortableServer library
4
 
#
5
 
 
6
 
!ifndef MINIMUM_CORBA
7
 
NAME = TAO_RTPortableServer
8
 
!else
9
 
!undef NAME
10
 
!endif
11
 
 
12
 
OBJFILES = \
13
 
        $(OBJDIR)\RTPortableServer.obj \
14
 
        $(OBJDIR)\RTPortableServerC.obj \
15
 
        $(OBJDIR)\RTPortableServerA.obj \
16
 
        $(OBJDIR)\RT_Acceptor_Filters.obj \
17
 
        $(OBJDIR)\RT_Collocation_Resolver.obj \
18
 
        $(OBJDIR)\RT_Object_Adapter_Factory.obj \
19
 
        $(OBJDIR)\RT_POA.obj \
20
 
        $(OBJDIR)\RT_Policy_Validator.obj \
21
 
        $(OBJDIR)\RT_Servant_Dispatcher.obj
22
 
 
23
 
RESOURCE = $(OBJDIR)\TAO_RTPortableServer.res
24
 
 
25
 
!ifdef STATIC
26
 
CFLAGS = \
27
 
        $(ACE_CFLAGS) \
28
 
        $(TAO_CFLAGS) \
29
 
        $(TAO_PORTABLESERVER_CFLAGS) \
30
 
        $(TAO_RTCORBA_CFLAGS) \
31
 
        $(TAO_ORT_CFLAGS) \
32
 
        $(TAO_VALUETYPE_CFLAGS) \
33
 
        $(TAO_RTPORTABLESERVER_CFLAGS)
34
 
!else
35
 
CFLAGS = \
36
 
        $(ACE_CFLAGS) \
37
 
        $(TAO_CFLAGS) \
38
 
        $(TAO_PORTABLESERVER_CFLAGS) \
39
 
        $(TAO_RTCORBA_CFLAGS) \
40
 
        $(TAO_ORT_CFLAGS) \
41
 
        $(TAO_VALUETYPE_CFLAGS) \
42
 
        $(TAO_RTPORTABLESERVER_CFLAGS) \
43
 
        -DTAO_RTPORTABLESERVER_BUILD_DLL
44
 
!endif
45
 
 
46
 
CPPDIR = .
47
 
 
48
 
INCDIR_NAME = tao\RTPortableServer
49
 
INCLUDES = *.h *.i *.pidl
50
 
 
51
 
LIBFILES = \
52
 
        $(ACE_LIB) \
53
 
        $(TAO_LIB) \
54
 
        $(TAO_ORT_LIB) \
55
 
        $(TAO_VALUETYPE_LIB) \
56
 
        $(TAO_PORTABLESERVER_LIB) \
57
 
        $(TAO_RTCORBA_LIB)
58
 
 
59
 
!include <$(ACE_ROOT)\include\makeinclude\build_core_library.bor>