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