diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-14 02:47:41 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-14 02:47:41 +0000 |
commit | 10d41c3aa24294bc5507c9a7782350ab4a61406e (patch) | |
tree | cac5c29ded2e481ba7177a864db8c66261fa03b6 | |
parent | 8adf4d081b23c08614290b571a92bac36eeafcd6 (diff) | |
download | ATCD-10d41c3aa24294bc5507c9a7782350ab4a61406e.tar.gz |
added TAO_ROOT check
-rw-r--r-- | TAO/tests/Quoter/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/TAO/tests/Quoter/Makefile b/TAO/tests/Quoter/Makefile index 4b311993d3a..8ccd641dae4 100644 --- a/TAO/tests/Quoter/Makefile +++ b/TAO/tests/Quoter/Makefile @@ -3,9 +3,13 @@ # # needed for the trading service stuff +ifndef TAO_ROOT + TAO_ROOT = $(ACE_ROOT)/TAO +endif # TAO_ROOT + ifndef STL_ROOT -STL_ROOT=/project/doc/irfan/ObjectSpace/SC4.0 -endif + STL_ROOT=/project/doc/irfan/ObjectSpace/SC4.0 +endif # STL_ROOT STD=$(STL_ROOT)/ospace/std STL=$(STL_ROOT)/stl @@ -88,9 +92,6 @@ include $(ACE_ROOT)/include/makeinclude/rules.local.GNU #### Local rules and variables... -ifndef TAO_ROOT -TAO_ROOT = $(ACE_ROOT)/TAO -endif TSS_ORB_FLAG = #-DTAO_HAS_TSS_ORBCORE DCFLAGS = -g LDFLAGS += -L$(TAO_ROOT)/orbsvcs/orbsvcs -L$(TAO_ROOT)/tao |