summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-14 19:21:34 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-14 19:21:34 +0000
commitab86f3344cfc9a2db11a432020f0066cf4f77f14 (patch)
tree23ae04bb4c7cb230091357883bdbdf9dc0f2a5df
parent995ee00f52e586a7e5e101f91b212c3eef42c9a1 (diff)
downloadATCD-ab86f3344cfc9a2db11a432020f0066cf4f77f14.tar.gz
ChangeLogTag:Sun May 14 12:19:41 2000 Darrell Brunsch <brunsch@uci.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rwxr-xr-xbin/msvc_auto_compile.pl24
4 files changed, 35 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 15c30d51bb5..ac4e03b407c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sun May 14 12:19:41 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ * bin/msvc_auto_compile.pl:
+
+ Added a -TAO option to specify that the TAO subdirectory
+ should be compiled.
+
Sat May 13 19:05:23 2000 Darrell Brunsch <brunsch@uci.edu>
* ace/SString.cpp:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 15c30d51bb5..ac4e03b407c 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Sun May 14 12:19:41 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ * bin/msvc_auto_compile.pl:
+
+ Added a -TAO option to specify that the TAO subdirectory
+ should be compiled.
+
Sat May 13 19:05:23 2000 Darrell Brunsch <brunsch@uci.edu>
* ace/SString.cpp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 15c30d51bb5..ac4e03b407c 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Sun May 14 12:19:41 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ * bin/msvc_auto_compile.pl:
+
+ Added a -TAO option to specify that the TAO subdirectory
+ should be compiled.
+
Sat May 13 19:05:23 2000 Darrell Brunsch <brunsch@uci.edu>
* ace/SString.cpp:
diff --git a/bin/msvc_auto_compile.pl b/bin/msvc_auto_compile.pl
index 4ab762cd929..285c4077e9f 100755
--- a/bin/msvc_auto_compile.pl
+++ b/bin/msvc_auto_compile.pl
@@ -14,16 +14,14 @@ else {
@directories = ();
-# Make sure to list these in opposite order (first to be compiled
-# should be last).
-@ace_dirs = ("$ACE_ROOT/ace",
- "$ACE_ROOT/apps",
- "$ACE_ROOT/ASNMP",
- "$ACE_ROOT/examples",
- "$ACE_ROOT/netsvcs",
- "$ACE_ROOT/performance-tests",
- "$ACE_ROOT/tests",
- "$ACE_ROOT/websvcs");
+@ace_dirs = ("$ACE_ROOT\\ace",
+ "$ACE_ROOT\\apps",
+ "$ACE_ROOT\\ASNMP",
+ "$ACE_ROOT\\examples",
+ "$ACE_ROOT\\netsvcs",
+ "$ACE_ROOT\\performance-tests",
+ "$ACE_ROOT\\tests",
+ "$ACE_ROOT\\websvcs");
$verbose = 0;
$print_status = 0;
@@ -243,6 +241,11 @@ while ( $#ARGV >= 0 && $ARGV[0] =~ /^(-|\/)/ )
$use_custom_dir = 1;
push @directories, @ace_dirs;
}
+ elsif ($ARGV[0] =~ '-TAO') { # Build TAO and its programs
+ print "Building TAO\n" if ( $verbose );
+ $use_custom_dir = 1;
+ push @directories, ("$ACE_ROOT\\TAO");
+ }
elsif ($ARGV[0] =~ '-dir') { # Compile only a specific directory
shift;
print "Adding directory $ARGV[0]\n" if ( $verbose );
@@ -286,6 +289,7 @@ while ( $#ARGV >= 0 && $ARGV[0] =~ /^(-|\/)/ )
print "\n";
print "-CORE = Build the Core libraries\n";
print "-ACE = Build ACE and its programs\n";
+ print "-TAO = Build TAO and its programs\n";
print "-dir <dir> = Compile custom directories\n";
print "\n";
print "-rebuild = Rebuild All\n";