From cd50745e1c6baa6b44acd0c1003953177e49d065 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 16 Jun 2020 08:46:44 -0700 Subject: [PATCH] Remove the new $< use from the Makefile. --- Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.in b/Makefile.in index 5e5038d7..a4766650 100644 --- a/Makefile.in +++ b/Makefile.in @@ -103,8 +103,8 @@ options.o: latest-year.h help-rsync.h help-rsyncd.h flist.o: rounding.h -help-rsync.h help-rsyncd.h: rsync.1.md - awk -f $(srcdir)/help-from-md.awk -v helpfile=$@ $(srcdir)/$< +help-rsync.h help-rsyncd.h: rsync.1.md help-from-md.awk + awk -f $(srcdir)/help-from-md.awk -v helpfile=$@ $(srcdir)/rsync.1.md rounding.h: rounding.c rsync.h proto.h @for r in 0 1 3; do \ @@ -125,10 +125,10 @@ rounding.h: rounding.c rsync.h proto.h @rm -f rounding.out simd-checksum-x86_64.o: simd-checksum-x86_64.cpp - $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $< + $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $(srcdir)/simd-checksum-x86_64.cpp lib/md5-asm-x86_64.o: lib/md5-asm-x86_64.s - $(CC) -c -o $@ $< + $(CC) -c -o $@ $(srcdir)/lib/md5-asm-x86_64.s tls$(EXEEXT): $(TLS_OBJ) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS) -- 2.47.2