diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2000-06-16 23:27:19 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2000-06-16 23:27:19 +0000 |
commit | be39c007acd3dbed99ae246cec29a63e251ce8e3 (patch) | |
tree | 98028b7ec52ba174d1ad02cc00e7ff8b43cf3643 /ace/Makefile | |
parent | 261236ce4036e29f8bd80fdd8d52c36801e0dab4 (diff) | |
download | ATCD-be39c007acd3dbed99ae246cec29a63e251ce8e3.tar.gz |
ChangeLogTag:Fri Jun 16 16:18:21 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'ace/Makefile')
-rw-r--r-- | ace/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ace/Makefile b/ace/Makefile index a6dd98045c6..7d3c38a3538 100644 --- a/ace/Makefile +++ b/ace/Makefile @@ -4,6 +4,10 @@ # Makefile for the entire ACE release #---------------------------------------------------------------------------- +ifneq ($(ssl),) + DIRS += SSL +endif # ssl + MAKEFILE = Makefile LIB = libACE.a SHLIB = libACE.$(SOEXT) @@ -391,7 +395,7 @@ ACELIB = include $(ACE_ROOT)/include/makeinclude/macros.GNU include $(ACE_ROOT)/include/makeinclude/rules.common.GNU -include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU +include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU #### Disable installs in this ($(ACE_ROOT)/ace) directory, because this #### is the (default) destination of installs anyways. This line prevents @@ -415,6 +419,9 @@ realclean: ACE_All: 0_ACE_All_Src.cpp 0_ACE_All_Tmp.cpp +# Build ACE before descending into subdirectories. +all.nested: all.local + 0_ACE_All_Src.h: @echo; echo > $@ "// $@"; |