K 10
svn:author
V 7
scrappy
K 8
svn:date
V 27
1999-06-11T03:27:09.000000Z
K 7
svn:log
V 596
From: Richard Todd <rmtodd@skywalker.ecn.ou.edu>

When trying to do, e.g., a 'make clean' in the top level directory, the
Makefile
does basically
   for i in $DIRS
   do
      cd $i; make clean ; cd ..
   done
Now, with 'doc/man' and 'doc/sgml' in the directories list, this code does
      cd doc/man; make clean; cd ..
      cd doc/sgml; make clean; cd ..
See the problem? .. from doc/man is "doc", not the top-level dir.  The
following patch changes the top-level Makefile to go into the 'doc' dir
(and not its subdirs) and have the doc/Makefile do the Right Thing for
make clean/install etc.

END
