added --backup-dir option from Bob Edwards
[rsync/rsync.git] / Makefile.in
... / ...
CommitLineData
1# Makefile for rsync. This is processed by configure to produce the final
2# Makefile
3
4prefix=@prefix@
5exec_prefix=@exec_prefix@
6bindir=@bindir@
7mandir=@mandir@
8
9LIBS=@LIBS@
10CC=@CC@
11CFLAGS=@CFLAGS@
12
13INSTALLCMD=@INSTALL@
14
15srcdir=@srcdir@
16VPATH=$(srcdir)
17SHELL=/bin/sh
18
19
20.SUFFIXES:
21.SUFFIXES: .c .o
22
23HEADS=byteorder.h config.h errcode.h proto.h rsync.h version.h \
24 lib/fnmatch.h lib/getopt.h lib/mdfour.h
25LIBOBJ=lib/getopt.o lib/fnmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o
26ZLIBOBJ=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
29OBJS1=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
30OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o fileio.o
31DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
32OBJS=$(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
40all: rsync
41
42man: rsync.1 rsyncd.conf.5
43
44install: 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
52install-strip:
53 $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install
54
55rsync: $(OBJS)
56 $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS)
57
58$(OBJS): $(HEADS)
59
60rsync.1: rsync.yo
61 yodl2man -o rsync.1 rsync.yo
62
63rsyncd.conf.5: rsyncd.conf.yo
64 yodl2man -o rsyncd.conf.5 rsyncd.conf.yo
65
66proto:
67 cat *.c lib/compat.c | awk -f mkproto.awk > proto.h
68
69clean:
70 rm -f *~ $(OBJS) rsync
71
72distclean: 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)
79finddead:
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