summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-05-03 18:29:02 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-05-03 18:29:02 +0000
commit3c86532f6efe84150a61398a8c3183074af7eb2c (patch)
tree4ec357565cb5b110927e26f6d2649bc7848b75af
parent1897dd9cc494ea85df54dab86dddf2768072cfa5 (diff)
downloadATCD-3c86532f6efe84150a61398a8c3183074af7eb2c.tar.gz
ChangeLogTag: Fri May 03 19:48:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--include/makeinclude/wrapper_macros.GNU16
1 files changed, 12 insertions, 4 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index f0feac1b4c8..39648cf5799 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -225,10 +225,18 @@ endif
ifeq (,$(findstring -I$(ACE_ROOT),$(INCLDIRS)))
INCLDIRS += -I$(ACE_ROOT)
endif
-INSBIN = $(ACE_ROOT)/bin
-INSINC = $(ACE_ROOT)/ace
-INSLIB = $(ACE_ROOT)/ace
-INSMAN = $(ACE_ROOT)/man
+ifndef INSBIN
+ INSBIN = $(ACE_ROOT)/bin
+endif
+ifndef INSINC
+ INSINC = $(ACE_ROOT)/ace
+endif
+ifndef INSLIB
+ INSLIB = $(ACE_ROOT)/ace
+endif
+ifndef INSMAN
+ INSMAN = $(ACE_ROOT)/man
+endif
ifeq (,$(findstring -L$(ACE_ROOT)/ace,$(LDFLAGS)))
LDFLAGS += -L$(ACE_ROOT)/ace -L./
endif