Add targets to build documentation from Texinfo.
[rsync/rsync.git] / Makefile.in
1 # Makefile for rsync. This is processed by configure to produce the final
2 # Makefile
3
4 prefix=@prefix@
5 exec_prefix=@exec_prefix@
6 bindir=@bindir@
7 mandir=@mandir@
8
9 LIBS=@LIBS@
10 CC=@CC@
11 CFLAGS=@CFLAGS@
12 LDFLAGS=@LDFLAGS@
13
14 INSTALLCMD=@INSTALL@
15
16 srcdir=@srcdir@
17 VPATH=$(srcdir)
18 SHELL=/bin/sh
19
20 VERSION=@VERSION@
21
22 .SUFFIXES:
23 .SUFFIXES: .c .o
24
25 LIBOBJ=lib/fnmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o \
26         lib/permstring.o \
27         @LIBOBJS@
28 ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \
29         zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \
30         zlib/zutil.o zlib/adler32.o 
31 OBJS1=rsync.o generator.o receiver.o cleanup.o sender.o exclude.o util.o main.o checksum.o match.o syscall.o log.o backup.o
32 OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o fileio.o batch.o \
33         clientname.o
34 DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
35 popt_OBJS=popt/findme.o  popt/popt.o  popt/poptconfig.o \
36         popt/popthelp.o popt/poptparse.o
37 OBJS=$(OBJS1) $(OBJS2) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) @BUILD_POPT@
38
39 TLS_OBJ = tls.o syscall.o lib/permstring.o 
40
41 # Programs we must have to run the test cases
42 CHECK_PROGS = rsync tls
43
44 # note that the -I. is needed to handle config.h when using VPATH
45 .c.o:
46 @OBJ_SAVE@
47         $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< @CC_SHOBJ_FLAG@
48 @OBJ_RESTORE@
49
50 all: rsync
51
52 man: rsync.1 rsyncd.conf.5
53
54 install: all
55         -mkdir -p ${bindir}
56         ${INSTALLCMD} -m 755 rsync ${bindir}
57         -mkdir -p ${mandir}/man1
58         -mkdir -p ${mandir}/man5
59         ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
60         ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
61
62 install-strip:
63         $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install
64
65 rsync: $(OBJS)
66         @echo "Please ignore warnings below about mktemp -- it is used in a safe way"
67         $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS)
68
69 $(OBJS): config.h
70
71 tls: $(TLS_OBJ)
72         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS)
73
74 Makefile: Makefile.in configure config.status
75         echo "WARNING: You need to run ./config.status --recheck"
76
77 # don't actually run autoconf, just issue a warning
78 configure: configure.in
79         echo "WARNING: you need to rerun autoconf"
80
81 rsync.1: rsync.yo
82         yodl2man -o rsync.1 rsync.yo
83
84 rsyncd.conf.5: rsyncd.conf.yo
85         yodl2man -o rsyncd.conf.5 rsyncd.conf.yo
86
87 proto:
88         cat $(srcdir)/*.c $(srcdir)/lib/compat.c | awk -f $(srcdir)/mkproto.awk > $(srcdir)/proto.h
89
90 clean:
91         rm -f *~ $(OBJS) rsync $(TLS_OBJ) tls
92         rm -rf ./testtmp
93         rm -f config.cache 
94
95 distclean: clean
96         rm -f Makefile config.h config.status
97
98 # this target is really just for my use. It only works on a limited
99 # range of machines and is used to produce a list of potentially
100 # dead (ie. unused) functions in the code. (tridge)
101 finddead:
102         nm *.o */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt
103         nm *.o */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt
104         comm -13 nmused.txt nmfns.txt 
105
106 # 'check' is the GNU name, 'test' is the name for everybody else :-)
107 .PHONY: check test
108
109 test: check
110
111
112 # There seems to be no standard way to specify some variables as
113 # exported from a Makefile apart from listing them like this.
114
115 # TODO: Tests that depend on built test aide programs like tls need to
116 # know where the build directory is.
117
118 # This depends on building rsync; if we need any helper programs it
119 # should depend on them too.
120
121 # We try to run the scripts with POSIX mode on, in the hope that will
122 # catch Bash-isms earlier even if we're running on GNU.  Of course, we
123 # might lose in the future where POSIX diverges from old sh.
124
125 check: all $(CHECK_PROGS)
126         POSIXLY_CORRECT=1 TLS=`pwd`/tls rsync_bin=`pwd`/rsync srcdir="$(srcdir)" $(srcdir)/runtests.sh
127
128 # This does *not* depend on building or installing: you can use it to
129 # check a version installed from a binary or some other source tree,
130 # if you want.
131
132 installcheck: $(CHECK_PROGS)
133         POSIXLY_CORRECT=1 TLS=`pwd`/tls rsync_bin="$(bindir)/rsync" srcdir="$(srcdir)" $(srcdir)/runtests.sh
134
135 # TODO: Add 'dist' target; need to know which files will be included
136
137 rsync.dvi: doc/rsync.texinfo
138         texi2dvi -o $@ $<
139
140 rsync.ps: rsync.dvi     
141         dvips -ta4 -o $@ $<
142
143 rsync.pdf: doc/rsync.texinfo
144         texi2dvi -o $@ --pdf $<