A few more additions of $(srcdir) to Makefile.in.
[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 datarootdir=@datarootdir@
6 exec_prefix=@exec_prefix@
7 bindir=@bindir@
8 mandir=@mandir@
9
10 LIBS=@LIBS@
11 CC=@CC@
12 CFLAGS=@CFLAGS@
13 CPPFLAGS=@CPPFLAGS@
14 EXEEXT=@EXEEXT@
15 LDFLAGS=@LDFLAGS@
16
17 INSTALLCMD=@INSTALL@
18 INSTALLMAN=@INSTALL@
19
20 srcdir=@srcdir@
21 VPATH=$(srcdir)
22 SHELL=/bin/sh
23
24 VERSION=@VERSION@
25
26 .SUFFIXES:
27 .SUFFIXES: .c .o
28
29 GENFILES=configure.sh config.h.in proto.h proto.h-tstamp rsync.1 rsyncd.conf.5
30 HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h lib/pool_alloc.h
31 LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o lib/md5.o \
32         lib/permstring.o lib/pool_alloc.o lib/sysacls.o lib/sysxattrs.o @LIBOBJS@
33 ZLIBOBJ=zlib/deflate.o zlib/inffast.o zlib/inflate.o zlib/inftrees.o \
34         zlib/trees.o zlib/zutil.o zlib/adler32.o zlib/compress.o zlib/crc32.o
35 OBJS1=flist.o rsync.o generator.o receiver.o cleanup.o sender.o exclude.o \
36         util.o main.o checksum.o match.o syscall.o log.o backup.o
37 OBJS2=options.o io.o compat.o hlink.o token.o uidlist.o socket.o hashtable.o \
38         fileio.o batch.o clientname.o chmod.o acls.o xattrs.o
39 OBJS3=progress.o pipe.o
40 DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
41 popt_OBJS=popt/findme.o  popt/popt.o  popt/poptconfig.o \
42         popt/popthelp.o popt/poptparse.o
43 OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) @BUILD_POPT@
44
45 TLS_OBJ = tls.o syscall.o lib/compat.o lib/snprintf.o lib/permstring.o lib/sysxattrs.o @BUILD_POPT@
46
47 # Programs we must have to run the test cases
48 CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) getfsdev$(EXEEXT) \
49         trimslash$(EXEEXT) t_unsafe$(EXEEXT) wildtest$(EXEEXT)
50
51 CHECK_SYMLINKS = testsuite/chown-fake.test testsuite/devices-fake.test
52
53 # Objects for CHECK_PROGS to clean
54 CHECK_OBJS=tls.o getgroups.o getfsdev.o t_stub.o t_unsafe.o trimslash.o wildtest.o
55
56 # note that the -I. is needed to handle config.h when using VPATH
57 .c.o:
58 @OBJ_SAVE@
59         $(CC) -I. -I$(srcdir) $(CFLAGS) $(CPPFLAGS) -c $< @CC_SHOBJ_FLAG@
60 @OBJ_RESTORE@
61
62 all: conf_stop rsync$(EXEEXT) @MAKE_MAN@
63
64 install: all
65         -mkdir -p ${DESTDIR}${bindir}
66         ${INSTALLCMD} ${INSTALL_STRIP} -m 755 rsync$(EXEEXT) ${DESTDIR}${bindir}
67         -mkdir -p ${DESTDIR}${mandir}/man1
68         -mkdir -p ${DESTDIR}${mandir}/man5
69         if test -f $(srcdir)/rsync.1; then ${INSTALLMAN} -m 644 $(srcdir)/rsync.1 ${DESTDIR}${mandir}/man1; fi
70         if test -f $(srcdir)/rsyncd.conf.5; then ${INSTALLMAN} -m 644 $(srcdir)/rsyncd.conf.5 ${DESTDIR}${mandir}/man5; fi
71
72 install-strip:
73         $(MAKE) INSTALL_STRIP='-s' install
74
75 rsync$(EXEEXT): $(OBJS)
76         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
77
78 $(OBJS): $(HEADERS)
79 $(CHECK_OBJS): $(HEADERS)
80
81 flist.o: rounding.h
82
83 rounding.h: mkrounding$(EXEEXT)
84         ./mkrounding$(EXEEXT) >rounding.h
85
86 mkrounding$(EXEEXT): mkrounding.c rsync.h
87         @sed '1,/^struct file_struct/d; /^}/,$$d' <$(srcdir)/rsync.h >mkrounding.h
88         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ -I. $(srcdir)/mkrounding.c
89         @rm mkrounding.h
90
91 tls$(EXEEXT): $(TLS_OBJ)
92         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS)
93
94 getgroups$(EXEEXT): getgroups.o
95         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getgroups.o $(LIBS)
96
97 getfsdev$(EXEEXT): getfsdev.o
98         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getfsdev.o $(LIBS)
99
100 TRIMSLASH_OBJ = trimslash.o syscall.o lib/compat.o lib/snprintf.o
101 trimslash$(EXEEXT): $(TRIMSLASH_OBJ)
102         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TRIMSLASH_OBJ) $(LIBS)
103
104 T_UNSAFE_OBJ = t_unsafe.o syscall.o util.o t_stub.o lib/compat.o lib/snprintf.o
105 t_unsafe$(EXEEXT): $(T_UNSAFE_OBJ)
106         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(T_UNSAFE_OBJ) $(LIBS)
107
108 gen: conf proto.h man
109
110 gensend: gen
111         rsync -aivzc $(GENFILES) samba.org:/home/ftp/pub/rsync/generated-files/
112
113 conf:
114         cd $(srcdir) && $(MAKE) -f prepare-source.mak conf
115
116 conf_stop: configure.sh config.h.in
117
118 configure.sh config.h.in: configure.in aclocal.m4
119         autoconf -o configure.sh
120         autoheader && touch config.h.in
121         @echo 'Configure files changed -- perhaps run:'
122         @echo '  ./config.status --recheck; ./config.status'
123         @exit 1
124
125 proto: proto.h-tstamp
126
127 proto.h: proto.h-tstamp
128         @echo ' ' >/dev/null
129
130 proto.h-tstamp: $(srcdir)/*.c $(srcdir)/lib/compat.c
131         perl $(srcdir)/mkproto.pl $(srcdir)/*.c $(srcdir)/lib/compat.c
132
133 man: rsync.1 rsyncd.conf.5
134
135 rsync.1: rsync.yo
136         yodl2man -o rsync.1 $(srcdir)/rsync.yo
137         -$(srcdir)/tweak_manpage rsync.1
138
139 rsyncd.conf.5: rsyncd.conf.yo
140         yodl2man -o rsyncd.conf.5 $(srcdir)/rsyncd.conf.yo
141         -$(srcdir)/tweak_manpage rsyncd.conf.5
142
143 clean: cleantests
144         rm -f *~ $(OBJS) $(CHECK_PROGS) $(CHECK_OBJS) $(CHECK_SYMLINKS) \
145                 mkrounding mkrounding.h rounding.h
146
147 cleantests:
148         rm -rf ./testtmp*
149
150 # We try to delete built files from both the source and build
151 # directories, just in case somebody previously configured things in
152 # the source directory.
153 distclean: clean
154         rm -f Makefile config.h config.status
155         rm -f $(srcdir)/Makefile $(srcdir)/config.h $(srcdir)/config.status
156         rm -f config.cache config.log
157         rm -f $(srcdir)/config.cache $(srcdir)/config.log
158         rm -f shconfig $(srcdir)/shconfig
159         rm -f $(GENFILES)
160
161 # this target is really just for my use. It only works on a limited
162 # range of machines and is used to produce a list of potentially
163 # dead (ie. unused) functions in the code. (tridge)
164 finddead:
165         nm *.o */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt
166         nm *.o */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt
167         comm -13 nmused.txt nmfns.txt
168
169 # 'check' is the GNU name, 'test' is the name for everybody else :-)
170 .PHONY: check test
171
172 test: check
173
174 # There seems to be no standard way to specify some variables as
175 # exported from a Makefile apart from listing them like this.
176
177 # This depends on building rsync; if we need any helper programs it
178 # should depend on them too.
179
180 # We try to run the scripts with POSIX mode on, in the hope that will
181 # catch Bash-isms earlier even if we're running on GNU.  Of course, we
182 # might lose in the future where POSIX diverges from old sh.
183
184 check: all $(CHECK_PROGS) $(CHECK_SYMLINKS)
185         rsync_bin=`pwd`/rsync$(EXEEXT) $(srcdir)/runtests.sh
186
187 check29: all $(CHECK_PROGS) $(CHECK_SYMLINKS)
188         rsync_bin=`pwd`/rsync$(EXEEXT) $(srcdir)/runtests.sh --protocol=29
189
190 wildtest.o: wildtest.c lib/wildmatch.c rsync.h config.h
191 wildtest$(EXEEXT): wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@
192         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@ $(LIBS)
193
194 testsuite/chown-fake.test:
195         ln -s chown.test $(srcdir)/testsuite/chown-fake.test
196
197 testsuite/devices-fake.test:
198         ln -s devices.test $(srcdir)/testsuite/devices-fake.test
199
200 # This does *not* depend on building or installing: you can use it to
201 # check a version installed from a binary or some other source tree,
202 # if you want.
203
204 installcheck: $(CHECK_PROGS) $(CHECK_SYMLINKS)
205         POSIXLY_CORRECT=1 TOOLDIR=`pwd` rsync_bin="$(bindir)/rsync$(EXEEXT)" srcdir="$(srcdir)" $(srcdir)/runtests.sh
206
207 # TODO: Add 'dist' target; need to know which files will be included
208
209 # Run the SPLINT (Secure Programming Lint) tool.  <www.splint.org>
210 .PHONY: splint
211 splint:
212         splint +unixlib +gnuextensions -weak rsync.c
213
214
215 rsync.dvi: doc/rsync.texinfo
216         texi2dvi -o $@ $<
217
218 rsync.ps: rsync.dvi
219         dvips -ta4 -o $@ $<
220
221 rsync.pdf: doc/rsync.texinfo
222         texi2dvi -o $@ --pdf $<
223
224
225 doxygen:
226         cd $(srcdir) && rm dox/html/* && doxygen
227
228 # for maintainers only
229 doxygen-upload:
230         rsync -avzv $(srcdir)/dox/html/ --delete \
231         samba.org:/home/httpd/html/rsync/doxygen/head/