summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-05 21:31:37 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-05 21:31:37 +0000
commitc9cfcaf27f000410d5e21c66a474732cc1de8dbc (patch)
tree6f1ca258637472ef755dd9e459afa4f6e67b71b2
parent7fed81c1f0b4adc9e8bc529940f217d11f57c8dd (diff)
downloadATCD-c9cfcaf27f000410d5e21c66a474732cc1de8dbc.tar.gz
ChangeLogTag: Mon Feb 5 15:13:53 2001 Jeff Parsons <parsons@cs.wustl.edu>
-rw-r--r--TAO/orbsvcs/IFR_Service/Makefile9
-rw-r--r--TAO/orbsvcs/tests/Makefile5
2 files changed, 9 insertions, 5 deletions
diff --git a/TAO/orbsvcs/IFR_Service/Makefile b/TAO/orbsvcs/IFR_Service/Makefile
index 83b40bfa21f..5ae839d65f8 100644
--- a/TAO/orbsvcs/IFR_Service/Makefile
+++ b/TAO/orbsvcs/IFR_Service/Makefile
@@ -21,10 +21,11 @@ include $(TAO_ROOT)/rules.tao.GNU
#----------------------------------------------------------------------------
# Define local rules and targets
#---------------------------------------------------------------------------
-MKLIST = \
- Makefile.TypeCodeFactory \
- Makefile.IFR_Service \
- Makefile.tao_ifr
+MKLIST = Makefile.TypeCodeFactory
+
+ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
+ MKLIST += Makefile.IFR_Service Makefile.tao_ifr
+endif # ACE_HAS_GNUG_PRE_2_8
all debug profile optimize install deinstall clean realclean clobber depend:
ifeq (Windows,$(findstring Windows,$(OS)))
diff --git a/TAO/orbsvcs/tests/Makefile b/TAO/orbsvcs/tests/Makefile
index 2d9e16ca3be..db0927be28c 100644
--- a/TAO/orbsvcs/tests/Makefile
+++ b/TAO/orbsvcs/tests/Makefile
@@ -24,7 +24,6 @@ DIRS = Simple_Naming \
Concurrency \
FaultTolerance \
ImplRepo \
- InterfaceRepo \
Trading \
AVStreams \
Notify \
@@ -33,6 +32,10 @@ DIRS = Simple_Naming \
ior_corbaname \
tests_svc_loader
+ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
+ DIRS += InterfaceRepo
+endif # ACE_HAS_GNUG_PRE_2_8
+
ifndef TAO_ROOT
TAO_ROOT = $(ACE_ROOT)/TAO
endif