summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/IFR_Service/IFR_Service.mpc
blob: 8e4d7c726f809b5c95e692e2492bed4fd0741283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// -*- MPC -*-
// $Id$

// The ifrservice base project inherits from minimum_corba, so it's no longer
// necessary to add minimum_corba to 'avoids' here.
project(IFR_Service) : orbsvcsexe, core, ifrservice, ifr_client, imr_client, crosscompile {
  exename = IFR_Service
  avoids      += uses_wchar
  
  IDL_Files {
  }
  
  Source_Files {
    IFR_Server.cpp
    IFR_Service.cpp
  }
}


project(TAO_IFR_BE) : taolib, conv_lib, ifr_client, crosscompile, minimum_corba {
  after       += TAO_IDL_FE
  sharedname   = TAO_IFR_BE
  libs        += TAO_IDL_FE
  dynamicflags = TAO_IFR_BE_BUILD_DLL
  includes    += $(TAO_ROOT)/TAO_IDL/include $(TAO_ROOT)/TAO_IDL/fe
  avoids      += uses_wchar

  Source_Files {
    be_global.cpp
    be_init.cpp
    be_produce.cpp
    ifr_adding_visitor.cpp
    ifr_adding_visitor_exception.cpp
    ifr_adding_visitor_operation.cpp
    ifr_adding_visitor_structure.cpp
    ifr_adding_visitor_union.cpp
    ifr_removing_visitor.cpp
    ifr_visitor.cpp
  }
  
  Header_Files {
    be_extern.h
  }
}


project(TAO_IFR_EXE) : aceexe, core, ifr_client, crosscompile, minimum_corba {
  after          += TAO_IFR_BE TAO_IDL_FE
  exename         = tao_ifr
  libs           += TAO_IFR_BE TAO TAO_IDL_FE
  includes       += $(TAO_ROOT)/orbsvcs/IFR_Service $(TAO_ROOT)/TAO_IDL/include $(TAO_ROOT)/TAO_IDL/fe
  install         = $(ACE_ROOT)/bin
  avoids      += uses_wchar

  specific(automake) {
    macros += TAO_IDL_INCLUDE_DIR=\"\\"$(includedir)/tao\\"\"
  }

  verbatim(gnuace, local) {
    ifeq ($(TAO_IDL_PREPROCESSOR),)
      CPPFLAGS += -DTAO_IDL_PREPROCESSOR=\\\"$(strip $(CXX))\\\"
    else
      CPPFLAGS += -DTAO_IDL_PREPROCESSOR=\\\"$(subst \\,\\,$(TAO_IDL_PREPROCESSOR))\\\"
    endif
  }

  Source_Files {
    drv_args.cpp
    drv_preproc.cpp
    tao_idl.cpp
  }
  
  Header_Files {
    $(TAO_ROOT)/TAO_IDL/include/drv_extern.h
  }
}