File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / rsync / Makefile.in
Revision 1.1.1.4 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 00:32:36 2021 UTC (3 years, 3 months ago) by misho
Branches: rsync, MAIN
CVS tags: v3_2_3, HEAD
rsync 3.2.3

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>