Make all the rsync objects dependent on all the header files except the
[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
13 INSTALLCMD=@INSTALL@
14
15 srcdir=@srcdir@
16 VPATH=$(srcdir)
17 SHELL=/bin/sh
18
19
20 .SUFFIXES:
21 .SUFFIXES: .c .o
22
23 HEADS=byteorder.h config.h errcode.h proto.h rsync.h version.h \
24         lib/fnmatch.h lib/getopt.h lib/mdfour.h
25 LIBOBJ=lib/getopt.o lib/fnmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o
26 ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \
27         zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \
28         zlib/zutil.o zlib/adler32.o 
29 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
30 OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o fileio.o
31 DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
32 OBJS=$(OBJS1) $(OBJS2) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ)
33
34 # note that the -I. is needed to handle config.h when using VPATH
35 .c.o:
36 @OBJ_SAVE@
37         $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< @CC_SHOBJ_FLAG@
38 @OBJ_RESTORE@
39
40 all: rsync
41
42 man: rsync.1 rsyncd.conf.5
43
44 install: all
45         -mkdir -p ${bindir}
46         ${INSTALLCMD} -m 755 rsync ${bindir}
47         -mkdir -p ${mandir}/man1
48         -mkdir -p ${mandir}/man5
49         ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
50         ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
51
52 install-strip:
53         $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install
54
55 rsync: $(OBJS)
56         $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS)
57
58 $(OBJS): $(HEADS)
59
60 rsync.1: rsync.yo
61         yodl2man -o rsync.1 rsync.yo
62
63 rsyncd.conf.5: rsyncd.conf.yo
64         yodl2man -o rsyncd.conf.5 rsyncd.conf.yo
65
66 proto:
67         cat *.c | awk -f mkproto.awk > proto.h
68
69 clean:
70         rm -f *~ $(OBJS) rsync 
71
72 distclean: clean
73         rm -f config.h config.cache config.status Makefile
74
75
76 # this target is really just for my use. It only works on a limited
77 # range of machines and is used to produce a list of potentially
78 # dead (ie. unused) functions in the code. (tridge)
79 finddead:
80         nm *.o */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt
81         nm *.o */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt
82         comm -13 nmused.txt nmfns.txt