Moved the rules for generating files such as configure, config.h.in,
[rsync/rsync.git] / prepare-source.mak
CommitLineData
2a3f3ba4
WD
1gen: configure config.h.in proto man
2
3configure: configure.in aclocal.m4
4 autoconf
5
6config.h.in: configure.in aclocal.m4
7 autoheader
8
9proto:
10 cat *.c lib/compat.c | awk -f mkproto.awk >proto.h.new
11 if diff proto.h proto.h.new >/dev/null; then \
12 rm proto.h.new; \
13 else \
14 mv proto.h.new proto.h; \
15 fi
16
17man: rsync.1 rsyncd.conf.5
18
19rsync.1: rsync.yo
20 yodl2man -o rsync.1 rsync.yo
21
22rsyncd.conf.5: rsyncd.conf.yo
23 yodl2man -o rsyncd.conf.5 rsyncd.conf.yo