summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/ami4ccm/ami4ccm/ami4ccm.mpc
blob: 8b43fc1de97369af2dd6d56859ddacf16ea646a7 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// $Id$

project(AMI4CCM_idl_gen) : install, componentidldefaults {
  custom_only = 1
  idlflags += -Wb,stub_export_macro=AMI4CCM_STUB_Export \
              -Wb,stub_export_include=ami4ccm_stub_export.h \
              -Wb,svnt_export_macro=AMI4CCM_SVNT_Export \
              -Wb,svnt_export_include=ami4ccm_svnt_export.h \
              -Wb,skel_export_macro=AMI4CCM_SVNT_Export \
              -Wb,skel_export_include=ami4ccm_svnt_export.h

  IDL_Files {
    ami4ccm.idl
  }

  specific {
    install_dir = connectors/ami4ccm/ami4ccm
  }
}

project (AMI4CCM_lem_gen) : install, ciaoidldefaults {
  custom_only = 1
  after += AMI4CCM_idl_gen
  idlflags += -I$(CIAO_ROOT)/connectors \
              -Wb,stub_export_macro=AMI4CCM_LEM_STUB_Export \
              -Wb,stub_export_include=ami4ccm_lem_stub_export.h -SS

  IDL_Files {
     idlflags += -Gxhst
     ami4ccmE.idl
  }

  specific {
    install_dir = connectors/ami4ccm/ami4ccm
  }
}

project(AMI4CCM_stub) : install, ciao_lib, messaging, ccm_stub {
  after += AMI4CCM_idl_gen
  sharedname = AMI4CCM_stub
  dynamicflags = AMI4CCM_STUB_BUILD_DLL
  includes += $(CIAO_ROOT)/connectors/ami4ccm

  Source_Files {
    ami4ccmC.cpp
    ami4ccm.cpp
  }

  Header_Files {
    ami4ccm.h
    ami4ccmC.h
    ami4ccm_stub_export.h
  }

  Inline_Files {
  }

  IDL_Files {
  }

  specific {
    install_dir = connectors/ami4ccm/ami4ccm
  }
}

project (AMI4CCM_lem_stub) : install, ccm_lem_stub, ciao_lib, ciao_output, taolib, valuetype, ifr_client {
  after += AMI4CCM_stub AMI4CCM_lem_gen
  libs  += AMI4CCM_stub
  includes += $(CIAO_ROOT)/connectors
  sharedname = AMI4CCM_lem_stub
  dynamicflags += AMI4CCM_LEM_STUB_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
   ami4ccmEC.cpp
  }

  Header_Files {
   ami4ccmEC.h
   ami4ccm_lem_stub_export.h
  }

  Inline_Files {
   ami4ccmEC.inl
  }

  specific {
    install_dir = connectors/ami4ccm/ami4ccm
  }
}

project (AMI4CCM_svnt) : install, ciao_servant, ciao_lib {
  after += AMI4CCM_lem_stub
  libs += AMI4CCM_lem_stub AMI4CCM_stub
  includes += $(CIAO_ROOT)/connectors
  sharedname = AMI4CCM_svnt
  dynamicflags += AMI4CCM_SVNT_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    ami4ccmS.cpp
    ami4ccm_svnt.cpp
  }

  Header_Files {
    ami4ccmS.h
    ami4ccm_svnt.h
    ami4ccm_svnt_export.h
  }

  Inline_Files {
    ami4ccmS.inl
  }

  specific {
    install_dir = connectors/ami4ccm/ami4ccm
  }
}