Even more man page improvements.
[rsync.git] / Makefile.in
1 # The Makefile for rsync (configure creates it from Makefile.in).
2
3 prefix=@prefix@
4 datarootdir=@datarootdir@
5 exec_prefix=@exec_prefix@
6 bindir=@bindir@
7 libdir=@libdir@/rsync
8 mandir=@mandir@
9 with_rrsync=@with_rrsync@
10
11 LIBS=@LIBS@
12 CC=@CC@
13 AWK=@AWK@
14 CFLAGS=@CFLAGS@
15 CPPFLAGS=@CPPFLAGS@
16 CXX=@CXX@
17 CXXFLAGS=@CXXFLAGS@
18 EXEEXT=@EXEEXT@
19 LDFLAGS=@LDFLAGS@
20 LIBOBJDIR=lib/
21
22 INSTALLCMD=@INSTALL@
23 INSTALLMAN=@INSTALL@
24
25 srcdir=@srcdir@
26 MKDIR_P=@MKDIR_P@
27 VPATH=$(srcdir)
28 SHELL=/bin/sh
29
30 .SUFFIXES:
31 .SUFFIXES: .c .o
32
33 SIMD_x86_64=simd-checksum-x86_64.o simd-checksum-avx2.o
34 ASM_x86_64=lib/md5-asm-x86_64.o
35
36 GENFILES=configure.sh aclocal.m4 config.h.in rsync.1 rsync.1.html \
37          rsync-ssl.1 rsync-ssl.1.html rsyncd.conf.5 rsyncd.conf.5.html
38 HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h itypes.h inums.h \
39         lib/pool_alloc.h lib/mdigest.h lib/md-defines.h
40 LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o lib/md5.o \
41         lib/permstring.o lib/pool_alloc.o lib/sysacls.o lib/sysxattrs.o @LIBOBJS@
42 zlib_OBJS=zlib/deflate.o zlib/inffast.o zlib/inflate.o zlib/inftrees.o \
43         zlib/trees.o zlib/zutil.o zlib/adler32.o zlib/compress.o zlib/crc32.o
44 OBJS1=flist.o rsync.o generator.o receiver.o cleanup.o sender.o exclude.o \
45         util1.o util2.o main.o checksum.o match.o syscall.o log.o backup.o delete.o
46 OBJS2=options.o io.o compat.o hlink.o token.o uidlist.o socket.o hashtable.o \
47         usage.o fileio.o batch.o clientname.o chmod.o acls.o xattrs.o
48 OBJS3=progress.o pipe.o @ASM@ @SIMD@
49 DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
50 popt_OBJS=popt/findme.o  popt/popt.o  popt/poptconfig.o \
51         popt/popthelp.o popt/poptparse.o
52 OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON_OBJ) $(LIBOBJ) @BUILD_ZLIB@ @BUILD_POPT@
53
54 TLS_OBJ = tls.o syscall.o util2.o t_stub.o lib/compat.o lib/snprintf.o lib/permstring.o lib/sysxattrs.o @BUILD_POPT@
55
56 # Programs we must have to run the test cases
57 CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) getfsdev$(EXEEXT) \
58         testrun$(EXEEXT) trimslash$(EXEEXT) t_unsafe$(EXEEXT) wildtest$(EXEEXT)
59
60 CHECK_SYMLINKS = testsuite/chown-fake.test testsuite/devices-fake.test testsuite/xattrs-hlink.test
61
62 # Objects for CHECK_PROGS to clean
63 CHECK_OBJS=tls.o testrun.o getgroups.o getfsdev.o t_stub.o t_unsafe.o trimslash.o wildtest.o
64
65 # note that the -I. is needed to handle config.h when using VPATH
66 .c.o:
67 @OBJ_SAVE@
68         $(CC) -I. -I$(srcdir) $(CFLAGS) $(CPPFLAGS) -c $< @CC_SHOBJ_FLAG@
69 @OBJ_RESTORE@
70
71 all: Makefile rsync$(EXEEXT) stunnel-rsyncd.conf @MAKE_RRSYNC@ @MAKE_MAN@
72 .PHONY: all
73
74 .PHONY: install
75 install: all
76         -$(MKDIR_P) $(DESTDIR)$(bindir)
77         $(INSTALLCMD) $(INSTALL_STRIP) -m 755 rsync$(EXEEXT) $(DESTDIR)$(bindir)
78         $(INSTALLCMD) -m 755 $(srcdir)/rsync-ssl $(DESTDIR)$(bindir)
79         -$(MKDIR_P) $(DESTDIR)$(mandir)/man1
80         -$(MKDIR_P) $(DESTDIR)$(mandir)/man5
81         if test -f rsync.1; then $(INSTALLMAN) -m 644 rsync.1 $(DESTDIR)$(mandir)/man1; fi
82         if test -f rsync-ssl.1; then $(INSTALLMAN) -m 644 rsync-ssl.1 $(DESTDIR)$(mandir)/man1; fi
83         if test -f rsyncd.conf.5; then $(INSTALLMAN) -m 644 rsyncd.conf.5 $(DESTDIR)$(mandir)/man5; fi
84         if test "$(with_rrsync)" = yes; then \
85             $(INSTALLCMD) -m 755 rrsync $(DESTDIR)$(bindir); \
86             if test -f rrsync.1; then $(INSTALLMAN) -m 644 rrsync.1 $(DESTDIR)$(mandir)/man1; fi; \
87         fi
88
89 install-ssl-daemon: stunnel-rsyncd.conf
90         -$(MKDIR_P) $(DESTDIR)/etc/stunnel
91         $(INSTALLCMD) -m 644 stunnel-rsyncd.conf $(DESTDIR)/etc/stunnel/rsyncd.conf
92         @if ! ls /etc/rsync-ssl/certs/server.* >/dev/null 2>/dev/null; then \
93             echo "Note that you'll need to install the certificate used by /etc/stunnel/rsyncd.conf"; \
94         fi
95
96 install-all: install install-ssl-daemon
97
98 install-strip:
99         $(MAKE) INSTALL_STRIP='-s' install
100
101 rsync$(EXEEXT): $(OBJS)
102         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
103
104 rrsync: support/rrsync
105         cp -p $(srcdir)/support/rrsync rrsync
106
107 $(OBJS): $(HEADERS)
108 $(CHECK_OBJS): $(HEADERS)
109 tls.o xattrs.o: lib/sysxattrs.h
110 usage.o: version.h latest-year.h help-rsync.h help-rsyncd.h git-version.h default-cvsignore.h
111 loadparm.o: default-dont-compress.h daemon-parm.h
112
113 flist.o: rounding.h
114
115 default-cvsignore.h default-dont-compress.h: rsync.1.md define-from-md.awk
116         $(AWK) -f $(srcdir)/define-from-md.awk -v hfile=$@ $(srcdir)/rsync.1.md
117
118 help-rsync.h help-rsyncd.h: rsync.1.md help-from-md.awk
119         $(AWK) -f $(srcdir)/help-from-md.awk -v hfile=$@ $(srcdir)/rsync.1.md
120
121 daemon-parm.h: daemon-parm.txt daemon-parm.awk
122         $(AWK) -f $(srcdir)/daemon-parm.awk $(srcdir)/daemon-parm.txt
123
124 rounding.h: rounding.c rsync.h proto.h
125         @for r in 0 1 3; do \
126             if $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o rounding -DEXTRA_ROUNDING=$$r -I. $(srcdir)/rounding.c >rounding.out 2>&1; then \
127                 echo "#define EXTRA_ROUNDING $$r" >rounding.h; \
128                 if test -f "$$HOME/build_farm/build_test.fns"; then \
129                     echo "EXTRA_ROUNDING is $$r" >&2; \
130                 fi; \
131                 break; \
132             fi; \
133         done
134         @rm -f rounding
135         @if test -f rounding.h; then : ; else \
136             cat rounding.out 1>&2; \
137             echo "Failed to create rounding.h!" 1>&2; \
138             exit 1; \
139         fi
140         @rm -f rounding.out
141
142 git-version.h: ALWAYS_RUN
143         $(srcdir)/mkgitver
144
145 .PHONY: ALWAYS_RUN
146 ALWAYS_RUN:
147
148 simd-checksum-x86_64.o: simd-checksum-x86_64.cpp
149         @$(srcdir)/cmd-or-msg disable-simd $(CXX) -I. $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $(srcdir)/simd-checksum-x86_64.cpp
150
151 simd-checksum-avx2.o: simd-checksum-avx2.S
152         @$(srcdir)/cmd-or-msg disable-asm $(CC) $(CFLAGS) --include=$(srcdir)/rsync.h -DAVX2_ASM -I. @NOEXECSTACK@ -c -o $@ $(srcdir)/simd-checksum-avx2.S
153
154 lib/md5-asm-x86_64.o: lib/md5-asm-x86_64.S config.h lib/md-defines.h
155         @$(srcdir)/cmd-or-msg disable-asm $(CC) -I. @NOEXECSTACK@ -c -o $@ $(srcdir)/lib/md5-asm-x86_64.S
156
157 tls$(EXEEXT): $(TLS_OBJ)
158         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS)
159
160 testrun$(EXEEXT): testrun.o
161         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ testrun.o
162
163 getgroups$(EXEEXT): getgroups.o
164         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getgroups.o $(LIBS)
165
166 getfsdev$(EXEEXT): getfsdev.o
167         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getfsdev.o $(LIBS)
168
169 TRIMSLASH_OBJ = trimslash.o syscall.o util2.o t_stub.o lib/compat.o lib/snprintf.o
170 trimslash$(EXEEXT): $(TRIMSLASH_OBJ)
171         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TRIMSLASH_OBJ) $(LIBS)
172
173 T_UNSAFE_OBJ = t_unsafe.o syscall.o util1.o util2.o t_stub.o lib/compat.o lib/snprintf.o lib/wildmatch.o
174 t_unsafe$(EXEEXT): $(T_UNSAFE_OBJ)
175         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(T_UNSAFE_OBJ) $(LIBS)
176
177 .PHONY: conf
178 conf: configure.sh config.h.in
179
180 .PHONY: gen
181 gen: conf proto.h man git-version.h
182
183 .PHONY: gensend
184 gensend: gen
185         if ! diff git-version.h $(srcdir)/gists/rsync-git-version.h >/dev/null; then \
186             ./rsync -ai git-version.h $(srcdir)/gists/rsync-git-version.h && \
187             (cd $(srcdir)/gists && git commit --allow-empty-message -m '' rsync-git-version.h && git push) ; \
188         fi
189         rsync -aic $(GENFILES) git-version.h $${SAMBA_HOST-samba.org}:/home/ftp/pub/rsync/generated-files/ || true
190
191 aclocal.m4: $(srcdir)/m4/*.m4
192         aclocal -I $(srcdir)/m4
193
194 configure.sh config.h.in: configure.ac aclocal.m4
195         @if test -f configure.sh; then cp -p configure.sh configure.sh.old; else touch configure.sh.old; fi
196         @if test -f config.h.in; then cp -p config.h.in config.h.in.old; else touch config.h.in.old; fi
197         autoconf -o configure.sh
198         autoheader && touch config.h.in
199         @if diff configure.sh configure.sh.old >/dev/null 2>&1; then \
200             echo "configure.sh is unchanged."; \
201             rm configure.sh.old; \
202         else \
203             echo "configure.sh has CHANGED."; \
204         fi
205         @if diff config.h.in config.h.in.old >/dev/null 2>&1; then \
206             echo "config.h.in is unchanged."; \
207             rm config.h.in.old; \
208         else \
209             echo "config.h.in has CHANGED."; \
210         fi
211         @if test -f configure.sh.old || test -f config.h.in.old; then \
212             if test "$(MAKECMDGOALS)" = reconfigure; then \
213                 echo 'Continuing with "make reconfigure".'; \
214             else \
215                 echo 'You may need to run:'; \
216                 echo '  make reconfigure'; \
217                 exit 1; \
218             fi \
219         fi
220
221 .PHONY: reconfigure
222 reconfigure: configure.sh
223         ./config.status --recheck
224         ./config.status
225
226 .PHONY: restatus
227 restatus:
228         ./config.status
229
230 Makefile: Makefile.in config.status configure.sh config.h.in
231         @if test -f Makefile; then cp -p Makefile Makefile.old; else touch Makefile.old; fi
232         @./config.status
233         @if diff Makefile Makefile.old >/dev/null 2>&1; then \
234             echo "Makefile is unchanged."; \
235             rm Makefile.old; \
236         else \
237             if test "$(MAKECMDGOALS)" = reconfigure; then \
238                 echo 'Continuing with "make reconfigure".'; \
239             else \
240                 echo "Makefile updated -- rerun your make command."; \
241                 exit 1; \
242             fi \
243         fi
244
245 stunnel-rsyncd.conf: $(srcdir)/stunnel-rsyncd.conf.in Makefile
246         sed 's;\@bindir\@;$(bindir);g' <$(srcdir)/stunnel-rsyncd.conf.in >stunnel-rsyncd.conf
247
248 .PHONY: proto
249 proto: proto.h-tstamp
250
251 proto.h: proto.h-tstamp
252         @if test -f proto.h; then :; else cp -p $(srcdir)/proto.h .; fi
253
254 proto.h-tstamp: $(srcdir)/*.c $(srcdir)/lib/compat.c daemon-parm.h
255         $(AWK) -f $(srcdir)/mkproto.awk $(srcdir)/*.c $(srcdir)/lib/compat.c daemon-parm.h
256
257 .PHONY: man
258 man: rsync.1 rsync-ssl.1 rsyncd.conf.5 @MAKE_RRSYNC_1@
259
260 rsync.1: rsync.1.md md-convert version.h Makefile
261         @$(srcdir)/maybe-make-man rsync.1.md
262
263 rsync-ssl.1: rsync-ssl.1.md md-convert version.h Makefile
264         @$(srcdir)/maybe-make-man rsync-ssl.1.md
265
266 rsyncd.conf.5: rsyncd.conf.5.md md-convert version.h Makefile
267         @$(srcdir)/maybe-make-man rsyncd.conf.5.md
268
269 rrsync.1: support/rrsync.1.md md-convert Makefile
270         @$(srcdir)/maybe-make-man support/rrsync.1.md
271
272 .PHONY: clean
273 clean: cleantests
274         rm -f *~ $(OBJS) $(CHECK_PROGS) $(CHECK_OBJS) $(CHECK_SYMLINKS) \
275                 git-version.h rounding rounding.h *.old rsync*.1 rsync*.5 rsync*.html \
276                 daemon-parm.h help-*.h default-*.h proto.h proto.h-tstamp
277
278 .PHONY: cleantests
279 cleantests:
280         rm -rf ./testtmp*
281
282 # We try to delete built files from both the source and build
283 # directories, just in case somebody previously configured things in
284 # the source directory.
285 .PHONY: distclean
286 distclean: clean
287         for dir in $(srcdir) . ; do \
288             (cd "$$dir" && rm -rf Makefile config.h config.status stunnel-rsyncd.conf \
289              lib/dummy popt/dummy zlib/dummy config.cache config.log shconfig \
290              $(GENFILES) autom4te.cache) ; \
291         done
292
293 # this target is really just for my use. It only works on a limited
294 # range of machines and is used to produce a list of potentially
295 # dead (ie. unused) functions in the code. (tridge)
296 .PHONY: finddead
297 finddead:
298         nm *.o */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt
299         nm *.o */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt
300         comm -13 nmused.txt nmfns.txt
301         @rm nmused.txt nmfns.txt
302
303 # 'check' is the GNU name, 'test' is the name for everybody else :-)
304 .PHONY: test
305 test: check
306
307 # There seems to be no standard way to specify some variables as
308 # exported from a Makefile apart from listing them like this.
309
310 # This depends on building rsync; if we need any helper programs it
311 # should depend on them too.
312
313 # We try to run the scripts with POSIX mode on, in the hope that will
314 # catch Bash-isms earlier even if we're running on GNU.  Of course, we
315 # might lose in the future where POSIX diverges from old sh.
316
317 .PHONY: check
318 check: all $(CHECK_PROGS) $(CHECK_SYMLINKS)
319         rsync_bin=`pwd`/rsync$(EXEEXT) $(srcdir)/runtests.sh
320
321 .PHONY: check29
322 check29: all $(CHECK_PROGS) $(CHECK_SYMLINKS)
323         rsync_bin=`pwd`/rsync$(EXEEXT) $(srcdir)/runtests.sh --protocol=29
324
325 .PHONY: check30
326 check30: all $(CHECK_PROGS) $(CHECK_SYMLINKS)
327         rsync_bin=`pwd`/rsync$(EXEEXT) $(srcdir)/runtests.sh --protocol=30
328
329 wildtest.o: wildtest.c t_stub.o lib/wildmatch.c rsync.h config.h
330 wildtest$(EXEEXT): wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@
331         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@ $(LIBS)
332
333 testsuite/chown-fake.test:
334         ln -s chown.test $(srcdir)/testsuite/chown-fake.test
335
336 testsuite/devices-fake.test:
337         ln -s devices.test $(srcdir)/testsuite/devices-fake.test
338
339 testsuite/xattrs-hlink.test:
340         ln -s xattrs.test $(srcdir)/testsuite/xattrs-hlink.test
341
342 # This does *not* depend on building or installing: you can use it to
343 # check a version installed from a binary or some other source tree,
344 # if you want.
345
346 .PHONY: installcheck
347 installcheck: $(CHECK_PROGS) $(CHECK_SYMLINKS)
348         POSIXLY_CORRECT=1 TOOLDIR=`pwd` rsync_bin="$(bindir)/rsync$(EXEEXT)" srcdir="$(srcdir)" $(srcdir)/runtests.sh
349
350 # TODO: Add 'dist' target; need to know which files will be included
351
352 # Run the SPLINT (Secure Programming Lint) tool.  <www.splint.org>
353 .PHONY: splint
354 splint:
355         splint +unixlib +gnuextensions -weak rsync.c
356
357 .PHONY: doxygen
358 doxygen:
359         cd $(srcdir) && rm dox/html/* && doxygen
360
361 # for maintainers only
362 .PHONY: doxygen-upload
363 doxygen-upload:
364         rsync -avzv $(srcdir)/dox/html/ --delete \
365         $${SAMBA_HOST-samba.org}:/home/httpd/html/rsync/doxygen/head/