Changeset 4660 for trunk/auto-reply

Show
Ignore:
Timestamp:
10/02/06 05:40:17 (2 years ago)
Author:
erijo
Message:

Removed cvs-clean target as it is in admin/Makefile.common

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/auto-reply/Makefile.am

    r4526 r4660  
    66 
    77SUBDIRS = src 
    8  
    9 cvs-clean: 
    10     @if test ! -d CVS; then \ 
    11           echo "you don't have a toplevel CVS directory."; \ 
    12           echo "You most certainly didn't use cvs to get these sources."; \ 
    13           echo "But this function depends on cvs's informations."; \ 
    14           exit 1 ;\ 
    15         fi;\ 
    16         pwd=`pwd` ;\ 
    17         dirs=`find . -type d | grep -v CVS | sed -e "s#^./##"` ;\ 
    18         for i in $$dirs; do \ 
    19           if test ! -d $$pwd/$$i/CVS; then \ 
    20             echo "D $$i" ;\ 
    21             rm -rf $$pwd/$$i; \ 
    22             continue; \ 
    23           fi ;\ 
    24           cd $$pwd/$$i ;\ 
    25           for f in * .*; do \ 
    26             if test ! -d $$f; then \ 
    27               if grep "^/$$f/" CVS/Entries >/dev/null; then \ 
    28                 a="b"; \ 
    29               else \ 
    30                 echo "F $$i/$$f"; \ 
    31                 rm -f $$pwd/$$i/$$f; \ 
    32               fi; \ 
    33             fi ; \ 
    34           done; \ 
    35         done 
    36