summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2001-12-20 16:54:55 +0000
committerSteve Huston <shuston@riverace.com>2001-12-20 16:54:55 +0000
commit125307113cea38188ab9714f5bda482bcd7ecfc5 (patch)
tree47e6ec938eed45c10304c25c60de486ac55c3575 /tests
parentc5980fe789f61c1ea3c860200c0b6c683f01624d (diff)
downloadATCD-125307113cea38188ab9714f5bda482bcd7ecfc5.tar.gz
ChangeLogTag:Thu Dec 20 11:43:29 2001 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile4
-rw-r--r--tests/Makefile.bor8
-rw-r--r--tests/SSL/Makefile.bor18
3 files changed, 29 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 13508fd7e8c..744356eb624 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -159,6 +159,10 @@ ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
endif # rmcast
endif # ACE_HAS_GNUG_PRE_2_8
+ifneq ($(ssl),0)
+ DIRS += SSL
+endif # ssl
+
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU
diff --git a/tests/Makefile.bor b/tests/Makefile.bor
index 452ed03cb12..f302ae92183 100644
--- a/tests/Makefile.bor
+++ b/tests/Makefile.bor
@@ -1,4 +1,5 @@
#
+# $Id$
# Makefile for building the ACE tests
#
@@ -107,7 +108,12 @@ NAMES = \
UPIPE_SAP_Test \
XtReactor_Test
-DIRS = RMCast
+!ifdef SSL_ROOT
+DIRS = RMCast \
+ SSL
+!else
+DIRS = RMCast
+!endif
MAKEFILES = DLL_Test.bor Service_Config_DLL.bor
diff --git a/tests/SSL/Makefile.bor b/tests/SSL/Makefile.bor
new file mode 100644
index 00000000000..17a8e577e66
--- /dev/null
+++ b/tests/SSL/Makefile.bor
@@ -0,0 +1,18 @@
+#
+# $Id$
+# Makefile for building the ACE SSL tests
+#
+
+NAMES = \
+ Thread_Pool_Reactor_SSL_Test
+
+OBJFILES = $(OBJDIR)\$(NAME).obj
+
+CFLAGS = $(ACE_CFLAGS)
+
+CPPDIR = .
+
+LIBFILES = $(ACE_LIB)
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>