diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2003-02-14 12:02:37 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2003-02-14 12:02:37 +0000 |
commit | 93b21d45e9e815ee58bc12f6efc1130a5420ae21 (patch) | |
tree | 743ae5f5bb77a496870baa37b3da5bb81d0a4e6a /TAO/utils/catior | |
parent | 4464de3ef67b4d9cf5170953770d336006bf955e (diff) | |
download | ATCD-93b21d45e9e815ee58bc12f6efc1130a5420ae21.tar.gz |
ChangeLogTag: Fri Feb 15 12:02:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/utils/catior')
-rw-r--r-- | TAO/utils/catior/Makefile.bor | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/TAO/utils/catior/Makefile.bor b/TAO/utils/catior/Makefile.bor index ae9c4ea571c..e457781db73 100644 --- a/TAO/utils/catior/Makefile.bor +++ b/TAO/utils/catior/Makefile.bor @@ -2,13 +2,23 @@ # Makefile for building the catior executable # +!ifndef MINIMUM_CORBA NAME = catior +!else +!undef NAME +!endif OBJFILES = $(OBJDIR)\catior.obj -CFLAGS = $(ACE_CFLAGS) $(TAO_CFLAGS) +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_RTCORBA_CFLAGS) -LIBFILES = $(ACE_LIB) $(TAO_LIB) +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_RTCORBA_LIB) CPPDIR = . |