Displaying 4 results from an estimated 4 matches for "cleantest".
Did you mean:
cleanest
2003 Jan 10
1
make clean
...cts 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*
2002 Jul 12
0
Installation
...onfigure.in
echo "WARNING: you need to rerun autoconf"
rsync.1: rsync.yo
yodl2man -o rsync.1 rsync.yo
rsyncd.conf.5: rsyncd.conf.yo
yodl2man -o rsyncd.conf.5 rsyncd.conf.yo
proto:
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)
cleantests:
rm -rf ./testtmp*
# We try to delete built files from both the source and build
# directories, just in case somebody previously configured things in
# the source directory.
distclean: clean
rm -f Makefile config.h config.status
rm...
2002 Nov 20
0
[PATCH] Updated patch to rsync for Stratus VOS
...unsafe$(EXEEXT): $(T_UNSAFE_OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(T_UNSAFE_OBJ) $(LIBS)
# I don't like these rules because CVS can skew the timestamps and
@@ -106,7 +108,7 @@ proto:
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) $(TLS_OBJ) $(CHECK_PROGS)
cleantests:
rm -rf ./testtmp*
@@ -151,14 +153,14 @@ test: check
# might lose in the future where POSIX diverges from old sh.
check: all $(CHECK_PROGS)
- POSIXLY_CORRECT=1 TOOLDIR=`pwd` rsync_bi...
2008 Feb 12
0
[PATCH] Make `make distclean' remove a few more files.
---
Makefile.in | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile.in b/Makefile.in
index 98486f4..fee32b7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -171,11 +171,14 @@ cleantests:
# the source directory.
distclean: clean
rm -f Makefile config.h config.status
+ rm -f lib/dummy popt/dummy zlib/dummy
rm -f $(srcdir)/Makefile $(srcdir)/config.h $(srcdir)/config.status
+ rm -f $(srcdir)/lib/dummy $(srcdir)/popt/dummy $(srcdir)/zlib/dummy
rm -f config.cache config.log...