From 956ff9ff72519d2ec4826654bfda1567d89555e5 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 18 Feb 2002 22:07:44 +0000 Subject: [PATCH] Fix bug that made tls.o not be removed by 'make clean'. --- Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index 504611e7..a5b4e5d0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -36,7 +36,7 @@ popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \ popt/popthelp.o popt/poptparse.o OBJS=$(OBJS1) $(OBJS2) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) @BUILD_POPT@ -tls_OBJ = tls.o syscall.o lib/permstring.o +TLS_OBJ = tls.o syscall.o lib/permstring.o # Programs we must have to run the test cases CHECK_PROGS = rsync tls @@ -68,8 +68,8 @@ rsync: $(OBJS) $(OBJS): config.h -tls: $(tls_OBJ) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(tls_OBJ) $(LIBS) +tls: $(TLS_OBJ) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS) Makefile: Makefile.in configure config.status echo "WARNING: You need to run ./config.status --recheck" -- 2.34.1