summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-22 06:55:40 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-22 06:55:40 +0000
commitf42d30eb149b81d001728c490aee421888ea552d (patch)
treed81bcb0c1223684dd50ed74eb901ebc6553261a6
parent3147d782d5674e553e6718edf6730a4840f175f3 (diff)
downloadATCD-f42d30eb149b81d001728c490aee421888ea552d.tar.gz
ChangeLogTag:Fri Dec 22 07:44:00 2000 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--performance-tests/Misc/basic_perf.bor26
-rw-r--r--performance-tests/Misc/childbirth_time.bor24
-rw-r--r--performance-tests/Misc/context_switch_time.bor24
-rw-r--r--performance-tests/Misc/preempt.bor21
-rw-r--r--performance-tests/Misc/test_mutex.bor21
-rw-r--r--performance-tests/Misc/test_naming.bor21
-rw-r--r--performance-tests/Misc/test_singleton.bor21
7 files changed, 70 insertions, 88 deletions
diff --git a/performance-tests/Misc/basic_perf.bor b/performance-tests/Misc/basic_perf.bor
index 03a9721467f..214837821eb 100644
--- a/performance-tests/Misc/basic_perf.bor
+++ b/performance-tests/Misc/basic_perf.bor
@@ -1,22 +1,20 @@
#
# Makefile for building the basic_perf Misc performance-test
-#
+#
NAME = basic_perf
-
+
OBJFILES = \
- $(OBJDIR)\basic_func.obj \
+ $(OBJDIR)\basic_func.obj \
$(OBJDIR)\basic_perf.obj
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
+
+CPPDIR = .
+
+LIBFILES = \
+ $(ACE_LIB)
+
+CFLAGS = $(ACE_CFLAGS)
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/performance-tests/Misc/childbirth_time.bor b/performance-tests/Misc/childbirth_time.bor
index 7ce1c3256ad..cd32b136475 100644
--- a/performance-tests/Misc/childbirth_time.bor
+++ b/performance-tests/Misc/childbirth_time.bor
@@ -1,21 +1,19 @@
#
# Makefile for building the childbirth_time Misc performance-test
-#
+#
NAME = childbirth_time
-
+
OBJFILES = \
$(OBJDIR)\childbirth_time.obj
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
+
+CPPDIR = .
+
+LIBFILES = \
+ $(ACE_LIB)
+
+CFLAGS = $(ACE_CFLAGS)
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/performance-tests/Misc/context_switch_time.bor b/performance-tests/Misc/context_switch_time.bor
index 07f6e5dc730..d40c8bd0544 100644
--- a/performance-tests/Misc/context_switch_time.bor
+++ b/performance-tests/Misc/context_switch_time.bor
@@ -1,21 +1,19 @@
#
# Makefile for building the context_switch_time Misc performance-test
-#
+#
NAME = context_switch_time
-
+
OBJFILES = \
$(OBJDIR)\context_switch_time.obj
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
+
+CPPDIR = .
+
+LIBFILES = \
+ $(ACE_LIB)
+
+CFLAGS = $(ACE_CFLAGS)
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/performance-tests/Misc/preempt.bor b/performance-tests/Misc/preempt.bor
index cab7a2939b5..bc5ab39c4ee 100644
--- a/performance-tests/Misc/preempt.bor
+++ b/performance-tests/Misc/preempt.bor
@@ -1,21 +1,18 @@
#
# Makefile for building the preempt Misc performance-test
-#
+#
NAME = preempt
-
+
OBJFILES = \
$(OBJDIR)\preempt.obj
-
-CPPDIR = .;..
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
+CPPDIR = .
+
+LIBFILES = \
+ $(ACE_LIB)
+
+CFLAGS = $(ACE_CFLAGS)
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/performance-tests/Misc/test_mutex.bor b/performance-tests/Misc/test_mutex.bor
index b85e237882a..b70b779413a 100644
--- a/performance-tests/Misc/test_mutex.bor
+++ b/performance-tests/Misc/test_mutex.bor
@@ -1,21 +1,18 @@
#
# Makefile for building the test_mutex Misc performance-test
-#
+#
NAME = test_mutex
-
+
OBJFILES = \
$(OBJDIR)\test_mutex.obj
-
-CPPDIR = .;..
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
+CPPDIR = .
+
+LIBFILES = \
+ $(ACE_LIB)
+
+CFLAGS = $(ACE_CFLAGS)
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/performance-tests/Misc/test_naming.bor b/performance-tests/Misc/test_naming.bor
index 10df589f692..c08fab30ecb 100644
--- a/performance-tests/Misc/test_naming.bor
+++ b/performance-tests/Misc/test_naming.bor
@@ -1,21 +1,18 @@
#
# Makefile for building the test_naming Misc performance-test
-#
+#
NAME = test_naming
-
+
OBJFILES = \
$(OBJDIR)\test_naming.obj
-
-CPPDIR = .;..
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
+CPPDIR = .
+
+LIBFILES = \
+ $(ACE_LIB)
+
+CFLAGS = $(ACE_CFLAGS)
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
diff --git a/performance-tests/Misc/test_singleton.bor b/performance-tests/Misc/test_singleton.bor
index 75f8fd98323..5c851e43a78 100644
--- a/performance-tests/Misc/test_singleton.bor
+++ b/performance-tests/Misc/test_singleton.bor
@@ -1,21 +1,18 @@
#
# Makefile for building the test_singleton Misc performance-test
-#
+#
NAME = test_singleton
-
+
OBJFILES = \
$(OBJDIR)\test_singleton.obj
-
-CPPDIR = .;..
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
+CPPDIR = .
+
+LIBFILES = \
+ $(ACE_LIB)
+
+CFLAGS = $(ACE_CFLAGS)
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>