Fix a comment.
[rsync/qnx.git] / Makefile.in
blobe3ee747c5817f9bc87a9f61069970b6dceed1f30
1 # Makefile for rsync. This is processed by configure to produce the final
2 # Makefile
4 prefix=@prefix@
5 datarootdir=@datarootdir@
6 exec_prefix=@exec_prefix@
7 bindir=@bindir@
8 mandir=@mandir@
10 LIBS=@LIBS@
11 CC=@CC@
12 CFLAGS=@CFLAGS@
13 CPPFLAGS=@CPPFLAGS@
14 EXEEXT=@EXEEXT@
15 LDFLAGS=@LDFLAGS@
17 INSTALLCMD=@INSTALL@
18 INSTALLMAN=@INSTALL@
20 srcdir=@srcdir@
21 VPATH=$(srcdir)
22 SHELL=/bin/sh
24 VERSION=@VERSION@
26 .SUFFIXES:
27 .SUFFIXES: .c .o
29 GENFILES=configure.sh config.h.in proto.h proto.h-tstamp rsync.1 rsyncd.conf.5
30 HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h itypes.h inums.h \
31 lib/pool_alloc.h
32 LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o lib/md5.o \
33 lib/permstring.o lib/pool_alloc.o lib/sysacls.o lib/sysxattrs.o @LIBOBJS@
34 ZLIBOBJ=zlib/deflate.o zlib/inffast.o zlib/inflate.o zlib/inftrees.o \
35 zlib/trees.o zlib/zutil.o zlib/adler32.o zlib/compress.o zlib/crc32.o
36 OBJS1=flist.o rsync.o generator.o receiver.o cleanup.o sender.o exclude.o \
37 util.o main.o checksum.o match.o syscall.o log.o backup.o delete.o
38 OBJS2=options.o io.o compat.o hlink.o token.o uidlist.o socket.o hashtable.o \
39 fileio.o batch.o clientname.o chmod.o acls.o xattrs.o
40 OBJS3=progress.o pipe.o
41 DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
42 popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \
43 popt/popthelp.o popt/poptparse.o
44 OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) @BUILD_POPT@
46 TLS_OBJ = tls.o syscall.o lib/compat.o lib/snprintf.o lib/permstring.o lib/sysxattrs.o @BUILD_POPT@
48 # Programs we must have to run the test cases
49 CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) getfsdev$(EXEEXT) \
50 testrun$(EXEEXT) trimslash$(EXEEXT) t_unsafe$(EXEEXT) wildtest$(EXEEXT)
52 CHECK_SYMLINKS = testsuite/chown-fake.test testsuite/devices-fake.test testsuite/xattrs-hlink.test
54 # Objects for CHECK_PROGS to clean
55 CHECK_OBJS=tls.o testrun.o getgroups.o getfsdev.o t_stub.o t_unsafe.o trimslash.o wildtest.o
57 # note that the -I. is needed to handle config.h when using VPATH
58 .c.o:
59 @OBJ_SAVE@
60 $(CC) -I. -I$(srcdir) $(CFLAGS) $(CPPFLAGS) -c $< @CC_SHOBJ_FLAG@
61 @OBJ_RESTORE@
63 all: Makefile rsync$(EXEEXT) @MAKE_MAN@
65 install: all
66 -mkdir -p ${DESTDIR}${bindir}
67 ${INSTALLCMD} ${INSTALL_STRIP} -m 755 rsync$(EXEEXT) ${DESTDIR}${bindir}
68 -mkdir -p ${DESTDIR}${mandir}/man1
69 -mkdir -p ${DESTDIR}${mandir}/man5
70 if test -f rsync.1; then ${INSTALLMAN} -m 644 rsync.1 ${DESTDIR}${mandir}/man1; fi
71 if test -f rsyncd.conf.5; then ${INSTALLMAN} -m 644 rsyncd.conf.5 ${DESTDIR}${mandir}/man5; fi
73 install-strip:
74 $(MAKE) INSTALL_STRIP='-s' install
76 rsync$(EXEEXT): $(OBJS)
77 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
79 $(OBJS): $(HEADERS)
80 $(CHECK_OBJS): $(HEADERS)
82 flist.o: rounding.h
84 rounding.h: rounding.c rsync.h
85 @for r in 0 1 3; do \
86 if $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o rounding -DEXTRA_ROUNDING=$$r -I. $(srcdir)/rounding.c >rounding.out 2>&1; then \
87 echo "#define EXTRA_ROUNDING $$r" >rounding.h; \
88 if test -f "$$HOME/build_farm/build_test.fns"; then \
89 echo "EXTRA_ROUNDING is $$r" >&2; \
90 fi; \
91 break; \
92 fi; \
93 done
94 @rm -f rounding
95 @if test -f rounding.h; then : ; else \
96 cat rounding.out 1>&2; \
97 echo "Failed to create rounding.h!" 1>&2; \
98 exit 1; \
100 @rm -f rounding.out
102 tls$(EXEEXT): $(TLS_OBJ)
103 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS)
105 testrun$(EXEEXT): testrun.o
106 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ testrun.o
108 getgroups$(EXEEXT): getgroups.o
109 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getgroups.o $(LIBS)
111 getfsdev$(EXEEXT): getfsdev.o
112 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getfsdev.o $(LIBS)
114 TRIMSLASH_OBJ = trimslash.o syscall.o lib/compat.o lib/snprintf.o
115 trimslash$(EXEEXT): $(TRIMSLASH_OBJ)
116 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TRIMSLASH_OBJ) $(LIBS)
118 T_UNSAFE_OBJ = t_unsafe.o syscall.o util.o t_stub.o lib/compat.o lib/snprintf.o lib/wildmatch.o
119 t_unsafe$(EXEEXT): $(T_UNSAFE_OBJ)
120 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(T_UNSAFE_OBJ) $(LIBS)
122 gen: conf proto.h man
124 gensend: gen
125 rsync -aivzc $(GENFILES) samba.org:/home/ftp/pub/rsync/generated-files/
127 conf:
128 cd $(srcdir) && $(MAKE) -f prepare-source.mak conf
130 configure.sh config.h.in: configure.ac aclocal.m4
131 @if test -f configure.sh; then cp -p configure.sh configure.sh.old; else touch configure.sh.old; fi
132 @if test -f config.h.in; then cp -p config.h.in config.h.in.old; else touch config.h.in.old; fi
133 autoconf -o configure.sh
134 autoheader && touch config.h.in
135 @if diff configure.sh configure.sh.old >/dev/null 2>&1; then \
136 echo "configure.sh is unchanged."; \
137 rm configure.sh.old; \
138 else \
139 echo "configure.sh has CHANGED."; \
141 @if diff config.h.in config.h.in.old >/dev/null 2>&1; then \
142 echo "config.h.in is unchanged."; \
143 rm config.h.in.old; \
144 else \
145 echo "config.h.in has CHANGED."; \
147 @if test -f configure.sh.old -o -f config.h.in.old; then \
148 if test "$(MAKECMDGOALS)" = reconfigure; then \
149 echo 'Continuing with "make reconfigure".'; \
150 else \
151 echo 'You may need to run:'; \
152 echo ' make reconfigure'; \
153 exit 1; \
154 fi \
157 reconfigure: configure.sh
158 ./config.status --recheck
159 ./config.status
161 Makefile: Makefile.in config.status configure.sh config.h.in
162 @if test -f Makefile; then cp -p Makefile Makefile.old; else touch Makefile.old; fi
163 @./config.status
164 @if diff Makefile Makefile.old >/dev/null 2>&1; then \
165 echo "Makefile is unchanged."; \
166 rm Makefile.old; \
167 else \
168 if test "$(MAKECMDGOALS)" = reconfigure; then \
169 echo 'Continuing with "make reconfigure".'; \
170 else \
171 echo "Makefile updated -- rerun your make command."; \
172 exit 1; \
173 fi \
176 proto: proto.h-tstamp
178 proto.h: proto.h-tstamp
179 @if test -f proto.h; then :; else cp -p $(srcdir)/proto.h .; fi
181 proto.h-tstamp: $(srcdir)/*.c $(srcdir)/lib/compat.c config.h
182 perl $(srcdir)/mkproto.pl $(srcdir)/*.c $(srcdir)/lib/compat.c
184 man: rsync.1 rsyncd.conf.5 man-copy
186 man-copy:
187 @-if test -f rsync.1; then :; else echo 'Copying srcdir rsync.1'; cp -p $(srcdir)/rsync.1 .; fi
188 @-if test -f rsyncd.conf.5; then :; else echo 'Copying srcdir rsyncd.conf.5'; cp -p $(srcdir)/rsyncd.conf.5 .; fi
190 rsync.1: rsync.yo
191 yodl2man -o rsync.1 $(srcdir)/rsync.yo
192 -$(srcdir)/tweak_manpage rsync.1
194 rsyncd.conf.5: rsyncd.conf.yo
195 yodl2man -o rsyncd.conf.5 $(srcdir)/rsyncd.conf.yo
196 -$(srcdir)/tweak_manpage rsyncd.conf.5
198 clean: cleantests
199 rm -f *~ $(OBJS) $(CHECK_PROGS) $(CHECK_OBJS) $(CHECK_SYMLINKS) \
200 rounding rounding.h *.old
202 cleantests:
203 rm -rf ./testtmp*
205 # We try to delete built files from both the source and build
206 # directories, just in case somebody previously configured things in
207 # the source directory.
208 distclean: clean
209 rm -f Makefile config.h config.status
210 rm -f lib/dummy popt/dummy zlib/dummy
211 rm -f $(srcdir)/Makefile $(srcdir)/config.h $(srcdir)/config.status
212 rm -f $(srcdir)/lib/dummy $(srcdir)/popt/dummy $(srcdir)/zlib/dummy
213 rm -f config.cache config.log
214 rm -f $(srcdir)/config.cache $(srcdir)/config.log
215 rm -f shconfig $(srcdir)/shconfig
216 rm -f $(GENFILES)
217 rm -rf autom4te.cache
219 # this target is really just for my use. It only works on a limited
220 # range of machines and is used to produce a list of potentially
221 # dead (ie. unused) functions in the code. (tridge)
222 finddead:
223 nm *.o */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt
224 nm *.o */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt
225 comm -13 nmused.txt nmfns.txt
227 # 'check' is the GNU name, 'test' is the name for everybody else :-)
228 .PHONY: check test
230 test: check
232 # There seems to be no standard way to specify some variables as
233 # exported from a Makefile apart from listing them like this.
235 # This depends on building rsync; if we need any helper programs it
236 # should depend on them too.
238 # We try to run the scripts with POSIX mode on, in the hope that will
239 # catch Bash-isms earlier even if we're running on GNU. Of course, we
240 # might lose in the future where POSIX diverges from old sh.
242 check: all $(CHECK_PROGS) $(CHECK_SYMLINKS)
243 rsync_bin=`pwd`/rsync$(EXEEXT) $(srcdir)/runtests.sh
245 check29: all $(CHECK_PROGS) $(CHECK_SYMLINKS)
246 rsync_bin=`pwd`/rsync$(EXEEXT) $(srcdir)/runtests.sh --protocol=29
248 check30: all $(CHECK_PROGS) $(CHECK_SYMLINKS)
249 rsync_bin=`pwd`/rsync$(EXEEXT) $(srcdir)/runtests.sh --protocol=30
251 wildtest.o: wildtest.c lib/wildmatch.c rsync.h config.h
252 wildtest$(EXEEXT): wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@
253 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@ $(LIBS)
255 testsuite/chown-fake.test:
256 ln -s chown.test $(srcdir)/testsuite/chown-fake.test
258 testsuite/devices-fake.test:
259 ln -s devices.test $(srcdir)/testsuite/devices-fake.test
261 testsuite/xattrs-hlink.test:
262 ln -s xattrs.test $(srcdir)/testsuite/xattrs-hlink.test
264 # This does *not* depend on building or installing: you can use it to
265 # check a version installed from a binary or some other source tree,
266 # if you want.
268 installcheck: $(CHECK_PROGS) $(CHECK_SYMLINKS)
269 POSIXLY_CORRECT=1 TOOLDIR=`pwd` rsync_bin="$(bindir)/rsync$(EXEEXT)" srcdir="$(srcdir)" $(srcdir)/runtests.sh
271 # TODO: Add 'dist' target; need to know which files will be included
273 # Run the SPLINT (Secure Programming Lint) tool. <www.splint.org>
274 .PHONY: splint
275 splint:
276 splint +unixlib +gnuextensions -weak rsync.c
279 rsync.dvi: doc/rsync.texinfo
280 texi2dvi -o $@ $<
282 rsync.ps: rsync.dvi
283 dvips -ta4 -o $@ $<
285 rsync.pdf: doc/rsync.texinfo
286 texi2dvi -o $@ --pdf $<
289 doxygen:
290 cd $(srcdir) && rm dox/html/* && doxygen
292 # for maintainers only
293 doxygen-upload:
294 rsync -avzv $(srcdir)/dox/html/ --delete \
295 samba.org:/home/httpd/html/rsync/doxygen/head/