summaryrefslogtreecommitdiff
path: root/prepare-source.mak
blob: 8a6fd905a1ef800e1562c27880f1b61beedd4621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
gen: configure config.h.in proto.h man

configure: configure.in aclocal.m4
	autoconf

config.h.in: configure.in aclocal.m4
	autoheader && touch config.h.in

proto.h: *.c lib/compat.c
	cat *.c lib/compat.c | awk -f mkproto.awk >proto.h.new
	if diff proto.h proto.h.new >/dev/null; then \
	  rm proto.h.new; \
	else \
	  mv proto.h.new proto.h; \
	fi

man: rsync.1 rsyncd.conf.5

rsync.1: rsync.yo
	yodl2man -o rsync.1 rsync.yo

rsyncd.conf.5: rsyncd.conf.yo
	yodl2man -o rsyncd.conf.5 rsyncd.conf.yo