summaryrefslogtreecommitdiff
path: root/modules/CIAO/tools/IDL3_to_XMI/IDL3_TO_XMI.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/tools/IDL3_to_XMI/IDL3_TO_XMI.mpc')
-rw-r--r--modules/CIAO/tools/IDL3_to_XMI/IDL3_TO_XMI.mpc65
1 files changed, 65 insertions, 0 deletions
diff --git a/modules/CIAO/tools/IDL3_to_XMI/IDL3_TO_XMI.mpc b/modules/CIAO/tools/IDL3_to_XMI/IDL3_TO_XMI.mpc
new file mode 100644
index 00000000000..57db9772560
--- /dev/null
+++ b/modules/CIAO/tools/IDL3_to_XMI/IDL3_TO_XMI.mpc
@@ -0,0 +1,65 @@
+// -*- MPC -*-
+// $Id$
+
+project(CIAO_IDL3_TO_XMI_BE) : acelib, install, ciao_output, ciao_xml_utils, tao_idl_fe {
+ sharedname = CIAO_IDL3_TO_XMI_BE
+ dynamicflags = CIAO_IDL3_TO_XMI_BUILD_DLL
+
+ // This is necessary for MPC to pull in rules.ciao.GNU
+ includes += $(CIAO_ROOT)
+
+ Source_Files {
+ be_global.cpp
+ be_helper.cpp
+ be_init.cpp
+ be_produce.cpp
+ be_sunsoft.cpp
+ IDL3_to_XMI_visitor.cpp
+ IR_Simulator_visitor.cpp
+ Literals.cpp
+ identifier_helper.cpp
+ }
+
+ Header_Files {
+ be_extern.h
+ be_global.h
+ be_helper.h
+ be_sunsoft.h
+ IDL3_to_XMI_visitor.h
+ CIAO_IDL3_TO_XMI_Export.h
+ }
+}
+
+project(CIAO_IDL3_TO_XMI_EXE) : aceexe, install, ciao_output, ciao_xml_utils, tao_idl_mcpp, xerces, tao_idl_fe {
+ after += CIAO_IDL3_TO_XMI_BE
+ exename = tao_idl3_to_xmi
+ libs += CIAO_IDL3_TO_XMI_BE
+ includes += $(TAO_ROOT) .
+ exeout = $(CIAO_ROOT)/bin
+
+ // Adding a strict ordering dependency with TAO_IDL_EXE. It appears on some systems, there
+ // can be a race between these two projects for tao_idl.cpp, causing some errors.
+ after += TAO_IDL_EXE
+
+ // This is necessary for MPC to pull in rules.ciao.GNU
+ includes += $(CIAO_ROOT)
+
+ verbatim(gnuace, local) {
+ ifeq ($(TAO_IDL_PREPROCESSOR),)
+ CPPFLAGS += -DTAO_IDL_PREPROCESSOR=\\\"$(strip $(CXX))\\\"
+ else
+ CPPFLAGS += -DTAO_IDL_PREPROCESSOR=\\\"$(subst \\,\\,$(TAO_IDL_PREPROCESSOR))\\\"
+ endif
+
+ VPATH = $(TAO_ROOT)/TAO_IDL $(TAO_ROOT)/TAO_IDL/driver
+ }
+
+ Source_Files {
+ $(TAO_ROOT)/TAO_IDL/driver/drv_args.cpp
+ $(TAO_ROOT)/TAO_IDL/tao_idl.cpp
+ }
+
+ Header_Files {
+ $(TAO_ROOT)/TAO_IDL/include/drv_extern.h
+ }
+}