Makefile.in 8.7 KB

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