Add message to ignore warnings about mktemp
[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@
12LDFLAGS=@LDFLAGS@
13
14INSTALLCMD=@INSTALL@
15
16srcdir=@srcdir@
17VPATH=$(srcdir)
18SHELL=/bin/sh
19
20VERSION=@VERSION@
21
22.SUFFIXES:
23.SUFFIXES: .c .o
24
25LIBOBJ=lib/fnmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o \
26 lib/permstring.o \
27 @LIBOBJS@
28ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \
29 zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \
30 zlib/zutil.o zlib/adler32.o
31OBJS1=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
32OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o fileio.o batch.o
33DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
34popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \
35 popt/popthelp.o popt/poptparse.o
36OBJS=$(OBJS1) $(OBJS2) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) @BUILD_POPT@
37
38tls_OBJ = tls.o syscall.o lib/permstring.o
39
40# Programs we must have to run the test cases
41CHECK_PROGS = rsync tls
42
43# note that the -I. is needed to handle config.h when using VPATH
44.c.o:
45@OBJ_SAVE@
46 $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< @CC_SHOBJ_FLAG@
47@OBJ_RESTORE@
48
49all: rsync
50
51man: rsync.1 rsyncd.conf.5
52
53install: all
54 -mkdir -p ${bindir}
55 ${INSTALLCMD} -m 755 rsync ${bindir}
56 -mkdir -p ${mandir}/man1
57 -mkdir -p ${mandir}/man5
58 ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
59 ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
60
61install-strip:
62 $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install
63
64rsync: $(OBJS)
65 @echo "Please ignore warnings below about mktemp -- it is used in a safe way"
66 $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS)
67
68tls: $(tls_OBJ)
69 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(tls_OBJ) $(LIBS)
70
71Makefile: Makefile.in configure config.status
72 echo "WARNING: You need to run ./config.status --recheck"
73
74# don't actually run autoconf, just issue a warning
75configure: configure.in
76 echo "WARNING: you need to rerun autoconf"
77
78rsync.1: rsync.yo
79 yodl2man -o rsync.1 rsync.yo
80
81rsyncd.conf.5: rsyncd.conf.yo
82 yodl2man -o rsyncd.conf.5 rsyncd.conf.yo
83
84proto:
85 cat *.c lib/compat.c | awk -f mkproto.awk > proto.h
86
87clean:
88 rm -f *~ $(OBJS) rsync $(TLS_OBJ) tls
89 rm -rf ./testtmp
90 rm -f config.cache
91
92distclean: clean
93 rm -f Makefile config.h config.status
94
95# this target is really just for my use. It only works on a limited
96# range of machines and is used to produce a list of potentially
97# dead (ie. unused) functions in the code. (tridge)
98finddead:
99 nm *.o */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt
100 nm *.o */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt
101 comm -13 nmused.txt nmfns.txt
102
103# 'check' is the GNU name, 'test' is the name for everybody else :-)
104.PHONY: check test
105
106test: check
107
108
109# There seems to be no standard way to specify some variables as
110# exported from a Makefile apart from listing them like this.
111
112# TODO: Tests that depend on built test aide programs like tls need to
113# know where the build directory is.
114
115# This depends on building rsync; if we need any helper programs it
116# should depend on them too.
117
118# We try to run the scripts with POSIX mode on, in the hope that will
119# catch Bash-isms earlier even if we're running on GNU. Of course, we
120# might lose in the future where POSIX diverges from old sh.
121
122check: all $(CHECK_PROGS)
123 POSIXLY_CORRECT=1 TLS=`pwd`/tls rsync_bin=`pwd`/rsync srcdir="$(srcdir)" $(srcdir)/runtests.sh
124
125# This does *not* depend on building or installing: you can use it to
126# check a version installed from a binary or some other source tree,
127# if you want.
128
129installcheck: $(CHECK_PROGS)
130 POSIXLY_CORRECT=1 TLS=`pwd`/tls rsync_bin="$(bindir)/rsync" srcdir="$(srcdir)" $(srcdir)/runtests.sh
131
132# TODO: Add 'dist' target; need to know which files will be included