Merge across rsync+ patch; add a little documentation to the manpage. More documenta...
[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
21 .SUFFIXES:
22 .SUFFIXES: .c .o
23
24 LIBOBJ=lib/fnmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o
25 ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \
26         zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \
27         zlib/zutil.o zlib/adler32.o 
28 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
29 OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o fileio.o batch.o
30 DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
31 popt_OBJS=popt/findme.o  popt/popt.o  popt/poptconfig.o \
32         popt/popthelp.o popt/poptparse.o
33 OBJS=$(OBJS1) $(OBJS2) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) @BUILD_POPT@
34
35 # note that the -I. is needed to handle config.h when using VPATH
36 .c.o:
37 @OBJ_SAVE@
38         $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< @CC_SHOBJ_FLAG@
39 @OBJ_RESTORE@
40
41 all: rsync
42
43 man: rsync.1 rsyncd.conf.5
44
45 install: all
46         -mkdir -p ${bindir}
47         ${INSTALLCMD} -m 755 rsync ${bindir}
48         -mkdir -p ${mandir}/man1
49         -mkdir -p ${mandir}/man5
50         ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
51         ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
52
53 install-strip:
54         $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install
55
56 rsync: $(OBJS)
57         $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS)
58
59 Makefile: Makefile.in configure config.status
60         echo "WARNING: You need to run ./config.status --recheck"
61
62 # don't actually run autoconf, just issue a warning
63 configure: configure.in
64         echo "WARNING: you need to rerun autoconf"
65
66 rsync.1: rsync.yo
67         yodl2man -o rsync.1 rsync.yo
68
69 rsyncd.conf.5: rsyncd.conf.yo
70         yodl2man -o rsyncd.conf.5 rsyncd.conf.yo
71
72 proto:
73         cat *.c lib/compat.c | awk -f mkproto.awk > proto.h
74
75 clean:
76         rm -f *~ $(OBJS) rsync 
77
78 distclean: clean
79         rm -f config.h config.cache config.status Makefile
80
81
82 # this target is really just for my use. It only works on a limited
83 # range of machines and is used to produce a list of potentially
84 # dead (ie. unused) functions in the code. (tridge)
85 finddead:
86         nm *.o */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt
87         nm *.o */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt
88         comm -13 nmused.txt nmfns.txt