summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-08-28 12:12:21 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-08-28 12:12:21 +0000
commit41da28bc7148d02ff0c32ebb24c4fb0402c8ebec (patch)
treedc0df4470580d54bff75c2fca07f5ea9dd413f6b
parent8a994d77525b162dde7e6d8dd55b852f0db01e94 (diff)
downloadATCD-41da28bc7148d02ff0c32ebb24c4fb0402c8ebec.tar.gz
ChangeLogTag: Thu Aug 28 07:10:54 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog21
-rw-r--r--bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm27
2 files changed, 40 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index be05c22f5c4..b952bf84225 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Aug 28 07:10:54 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
+
+ Added the reverseclean target as best as it could be supported by
+ MPC.
+
Thu Aug 28 06:33:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
* ASNMP/tests/Address_Test.cpp:
@@ -19,9 +26,9 @@ Thu Aug 28 04:24:24 UTC 2003 Don Hinton <dhinton@dresystems.com>
Wed Aug 27 20:34:19 2003 Venkita Subramonian <venkita@cs.wustl.edu>
- * Kokyu/Kokyu_defs.h: Added export qualification to
- Dispatcher_Attributes class to fix link error in
- Win2K_VC71_NET_DLL build.
+ * Kokyu/Kokyu_defs.h: Added export qualification to
+ Dispatcher_Attributes class to fix link error in
+ Win2K_VC71_NET_DLL build.
Wed Aug 27 17:52:44 2003 George Edwards <g.edwards@vanderbilt.edu>
@@ -35,11 +42,11 @@ Wed Aug 27 17:52:44 2003 George Edwards <g.edwards@vanderbilt.edu>
Wed Aug 27 15:18:49 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
- * include/makeinclude/wrapper_macros.GNU (CCFLAGS):
+ * include/makeinclude/wrapper_macros.GNU (CCFLAGS):
- Do not add "-Wno-uninitialized" to GNU C++ compiler flags. It
- is no longer needed to avoid (apparently) bogus warnings.
- Keeping it around hides potentially real problems.
+ Do not add "-Wno-uninitialized" to GNU C++ compiler flags. It
+ is no longer needed to avoid (apparently) bogus warnings.
+ Keeping it around hides potentially real problems.
Wed Aug 27 14:23:00 2003 Chad Elliott <elliott_c@ociweb.com>
diff --git a/bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm b/bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm
index 60ec3726def..c4ff8243033 100644
--- a/bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm
+++ b/bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm
@@ -91,6 +91,8 @@ sub write_comps {
## If there is more than one project, use a for loop
if ($#list > 0) {
+ my(@dirs) = ();
+ my(%added) = ();
print $fh "ifeq (\$(KEEP_GOING),1)$crlf" .
"\t\@for file in \$(MFILES); do \\$crlf" .
"\t\$(MAKE) -f `basename \$\$file` -C `dirname \$\$file` \$(\@); \\$crlf" .
@@ -98,12 +100,35 @@ sub write_comps {
"else$crlf";
foreach my $project (@list) {
print $fh "\t\@\$(MAKE) -f " . basename($project) . ' -C ' . dirname($project) . " \$(\@);$crlf";
+ my($dname) = dirname($project);
+ if ($dname ne '.' && !defined $added{$dname}) {
+ push(@dirs, $dname);
+ $added{$dname} = 1;
+ }
}
print $fh "endif$crlf";
+
+ ## Print out the reverseclean target
+ if (defined $dirs[0]) {
+ print $fh $crlf .
+ 'DIRS = \\' . $crlf;
+ for(my $i = 0; $i <= $#dirs; ++$i) {
+ print $fh " $dirs[$i]" . ($i != $#dirs ? ' \\' : '') . $crlf;
+ }
+ print $fh $crlf .
+ "reverseclean:$crlf" .
+ "\t\@\$(ACE_ROOT)/bin/reverse_clean \$(DIRS)$crlf";
+ }
}
else {
## Otherwise, just list the call to make without a for loop
- print $fh "\t\@\$(MAKE) -f " . basename($list[0]) . ' -C ' . dirname($list[0]) . " \$(\@);$crlf";
+ my($dir) = dirname($list[0]);
+ my($base) = basename($list[0]);
+ print $fh "\t\@\$(MAKE) -f $base " . ($dir ne '.' ? "-C $dir " : '') .
+ "\$(\@);$crlf$crlf" .
+ "reverseclean:$crlf" .
+ "\t\@\$(MAKE) -f $base " . ($dir ne '.' ? "-C $dir " : '') .
+ "realclean$crlf";
}
}