summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-01-31 07:49:06 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-01-31 07:49:06 +0000
commit8e03757310fd4ffaa33272c062b74274ac470066 (patch)
tree87c6b09f25bfea52f4d2601231c4a27abe0152c1 /TAO/orbsvcs
parent918e805aac6e09e47bbb3716599eda603e52e42a (diff)
downloadATCD-8e03757310fd4ffaa33272c062b74274ac470066.tar.gz
ChangeLogTag: Fri Jan 31 07:44:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/orbsvcs')
-rw-r--r--TAO/orbsvcs/IFR_Service/IFR_Service.mpc3
-rw-r--r--TAO/orbsvcs/IFR_Service/Makefile.BE11
2 files changed, 13 insertions, 1 deletions
diff --git a/TAO/orbsvcs/IFR_Service/IFR_Service.mpc b/TAO/orbsvcs/IFR_Service/IFR_Service.mpc
index ab40ed35f5f..eb3c81008c0 100644
--- a/TAO/orbsvcs/IFR_Service/IFR_Service.mpc
+++ b/TAO/orbsvcs/IFR_Service/IFR_Service.mpc
@@ -14,6 +14,7 @@ project(TAO_IFR_BE) : taolib, core {
depends += TAO_IDL_FE TAO_IFR_Client
sharedname = TAO_IFR_BE
libs += TAO_IDL_FE TAO_IFR_Client TAO
+ dllflags = TAO_IFR_BE_BUILD_DLL
includes += $(TAO_ROOT)/TAO_IDL/include $(TAO_ROOT)/TAO_IDL/fe
Source_Files {
@@ -26,7 +27,7 @@ project(TAO_IFR_BE) : taolib, core {
ifr_adding_visitor_union.cpp
ifr_removing_visitor.cpp
ifr_visitor.cpp
- }
+ }
}
diff --git a/TAO/orbsvcs/IFR_Service/Makefile.BE b/TAO/orbsvcs/IFR_Service/Makefile.BE
index 1dcffefb8a0..7ed2bdfd821 100644
--- a/TAO/orbsvcs/IFR_Service/Makefile.BE
+++ b/TAO/orbsvcs/IFR_Service/Makefile.BE
@@ -55,6 +55,17 @@ include $(TAO_ROOT)/taoconfig.mk
CPPFLAGS += -I../../TAO_IDL/include -I../../TAO_IDL/fe
LDFLAGS += -I$(TAO_ROOT)/tao
+ifeq ($(shared_libs),1)
+ifneq ($(SHLIB),)
+CPPFLAGS += -DTAO_IFR_BE_BUILD_DLL
+endif
+endif
+ifeq ($(static_libs),1)
+ifneq ($(LIB),)
+CPPFLAGS += -DTAO_AS_STATIC_LIBS -DACE_AS_STATIC_LIBS
+endif
+endif
+
realclean: clean
#----------------------------------------------------------------------------