make clean

Dave Dykstra dwd at drdykstra.us
Fri Jan 10 16:26:01 EST 2003


I checked in this patch.

- Dave

On Thu, Jan 09, 2003 at 06:41:19PM -0800, jw schultz wrote:
> I just did a make clean to tidy up a bit and found four
> objects were missed.  The seem to belong to the CHECK_PROGS
> set.  Not sure where best to put them so created a
> CHECK_OBJS variable and added it to the clean rule.
> 
> 
> -- 
> ________________________________________________________________
> 	J.W. Schultz            Pegasystems Technologies
> 	email address:		jw at pegasys.ws
> 
> 		Remember Cernan and Schmitt

> Index: Makefile.in
> ===================================================================
> RCS file: /cvsroot/rsync/Makefile.in,v
> retrieving revision 1.84
> diff -u -r1.84 Makefile.in
> --- Makefile.in	8 Apr 2002 06:23:34 -0000	1.84
> +++ Makefile.in	10 Jan 2003 02:40:34 -0000
> @@ -43,6 +43,9 @@
>  # Programs we must have to run the test cases
>  CHECK_PROGS = rsync tls getgroups trimslash t_unsafe
>  
> +# Objects for CHECK_PROGS to clean
> +CHECK_OBJS=getgroups.o t_stub.o t_unsafe.o trimslash.o
> +
>  # note that the -I. is needed to handle config.h when using VPATH
>  .c.o:
>  @OBJ_SAVE@
> @@ -106,7 +109,7 @@
>  	cat $(srcdir)/*.c $(srcdir)/lib/compat.c | awk -f $(srcdir)/mkproto.awk > $(srcdir)/proto.h
>  
>  clean: cleantests
> -	rm -f *~ $(OBJS) rsync $(TLS_OBJ) $(CHECK_PROGS)
> +	rm -f *~ $(OBJS) rsync $(TLS_OBJ) $(CHECK_PROGS) $(CHECK_OBJS)
>  
>  cleantests:
>  	rm -rf ./testtmp*




More information about the rsync mailing list