diff options
author | Wayne Davison <wayned@samba.org> | 2007-11-30 19:08:54 -0800 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2007-11-30 19:08:54 -0800 |
commit | 37adeae73e9e590082d1247eeb8f216db18b24dc (patch) | |
tree | eb334f63007416c9080c0aa26a292d093d610e8b /Makefile.in | |
parent | 091b3459f6e89ff3f04b8287e490789011586461 (diff) | |
download | rsync-37adeae73e9e590082d1247eeb8f216db18b24dc.tar.gz rsync-37adeae73e9e590082d1247eeb8f216db18b24dc.tar.bz2 rsync-37adeae73e9e590082d1247eeb8f216db18b24dc.zip |
A few more additions of $(srcdir) to Makefile.in.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index c0908462..e2c2ed12 100644 --- a/Makefile.in +++ b/Makefile.in @@ -128,17 +128,17 @@ proto.h: proto.h-tstamp @echo ' ' >/dev/null proto.h-tstamp: $(srcdir)/*.c $(srcdir)/lib/compat.c - perl mkproto.pl $(srcdir)/*.c $(srcdir)/lib/compat.c + perl $(srcdir)/mkproto.pl $(srcdir)/*.c $(srcdir)/lib/compat.c man: rsync.1 rsyncd.conf.5 rsync.1: rsync.yo - yodl2man -o rsync.1 rsync.yo - -./tweak_manpage rsync.1 + yodl2man -o rsync.1 $(srcdir)/rsync.yo + -$(srcdir)/tweak_manpage rsync.1 rsyncd.conf.5: rsyncd.conf.yo - yodl2man -o rsyncd.conf.5 rsyncd.conf.yo - -./tweak_manpage rsyncd.conf.5 + yodl2man -o rsyncd.conf.5 $(srcdir)/rsyncd.conf.yo + -$(srcdir)/tweak_manpage rsyncd.conf.5 clean: cleantests rm -f *~ $(OBJS) $(CHECK_PROGS) $(CHECK_OBJS) $(CHECK_SYMLINKS) \ |