/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Tim Marston
  • Date: 2014-01-03 12:17:03 UTC
  • Revision ID: tim@ed.am-20140103121703-afwyh7wifde5kidm
added description of return parameter to header

Show diffs side-by-side

added added

removed removed

 
1
# Makefile.in generated by automake 1.11.3 from Makefile.am.
 
2
# @configure_input@
 
3
 
 
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
 
6
# Foundation, Inc.
 
7
# This Makefile.in is free software; the Free Software Foundation
 
8
# gives unlimited permission to copy and/or distribute it,
 
9
# with or without modifications, as long as this notice is preserved.
 
10
 
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
13
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
14
# PARTICULAR PURPOSE.
 
15
 
 
16
@SET_MAKE@
 
17
 
 
18
# Makefile.am -- process this file with automake to produce Makefile.in
 
19
VPATH = @srcdir@
 
20
pkgdatadir = $(datadir)/@PACKAGE@
 
21
pkgincludedir = $(includedir)/@PACKAGE@
 
22
pkglibdir = $(libdir)/@PACKAGE@
 
23
pkglibexecdir = $(libexecdir)/@PACKAGE@
 
24
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
25
install_sh_DATA = $(install_sh) -c -m 644
 
26
install_sh_PROGRAM = $(install_sh) -c
 
27
install_sh_SCRIPT = $(install_sh) -c
 
28
INSTALL_HEADER = $(INSTALL_DATA)
 
29
transform = $(program_transform_name)
 
30
NORMAL_INSTALL = :
 
31
PRE_INSTALL = :
 
32
POST_INSTALL = :
 
33
NORMAL_UNINSTALL = :
 
34
PRE_UNINSTALL = :
 
35
POST_UNINSTALL = :
 
36
build_triplet = @build@
 
37
host_triplet = @host@
 
38
subdir = .
 
39
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
 
40
        $(srcdir)/Makefile.in $(srcdir)/config.h.in \
 
41
        $(top_srcdir)/configure COPYING COPYING.LESSER NEWS TODO \
 
42
        build-aux/config.guess build-aux/config.sub build-aux/depcomp \
 
43
        build-aux/install-sh build-aux/ltmain.sh build-aux/missing
 
44
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
45
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
 
46
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
 
47
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
 
48
        $(top_srcdir)/configure.ac
 
49
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
50
        $(ACLOCAL_M4)
 
51
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
 
52
 configure.lineno config.status.lineno
 
53
mkinstalldirs = $(install_sh) -d
 
54
CONFIG_HEADER = config.h
 
55
CONFIG_CLEAN_FILES =
 
56
CONFIG_CLEAN_VPATH_FILES =
 
57
SOURCES =
 
58
DIST_SOURCES =
 
59
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
60
        html-recursive info-recursive install-data-recursive \
 
61
        install-dvi-recursive install-exec-recursive \
 
62
        install-html-recursive install-info-recursive \
 
63
        install-pdf-recursive install-ps-recursive install-recursive \
 
64
        installcheck-recursive installdirs-recursive pdf-recursive \
 
65
        ps-recursive uninstall-recursive
 
66
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
 
67
  distclean-recursive maintainer-clean-recursive
 
68
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
69
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
70
        distdir dist dist-all distcheck
 
71
ETAGS = etags
 
72
CTAGS = ctags
 
73
DIST_SUBDIRS = $(SUBDIRS)
 
74
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
75
distdir = $(PACKAGE)-$(VERSION)
 
76
top_distdir = $(distdir)
 
77
am__remove_distdir = \
 
78
  if test -d "$(distdir)"; then \
 
79
    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
 
80
      && rm -rf "$(distdir)" \
 
81
      || { sleep 5 && rm -rf "$(distdir)"; }; \
 
82
  else :; fi
 
83
am__relativize = \
 
84
  dir0=`pwd`; \
 
85
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
86
  sed_rest='s,^[^/]*/*,,'; \
 
87
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
88
  sed_butlast='s,/*[^/]*$$,,'; \
 
89
  while test -n "$$dir1"; do \
 
90
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
91
    if test "$$first" != "."; then \
 
92
      if test "$$first" = ".."; then \
 
93
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
94
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
95
      else \
 
96
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
97
        if test "$$first2" = "$$first"; then \
 
98
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
99
        else \
 
100
          dir2="../$$dir2"; \
 
101
        fi; \
 
102
        dir0="$$dir0"/"$$first"; \
 
103
      fi; \
 
104
    fi; \
 
105
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
106
  done; \
 
107
  reldir="$$dir2"
 
108
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz
 
109
GZIP_ENV = --best
 
110
distuninstallcheck_listfiles = find . -type f -print
 
111
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
 
112
  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
 
113
distcleancheck_listfiles = find . -type f -print
 
114
ACLOCAL = @ACLOCAL@
 
115
AMTAR = @AMTAR@
 
116
AR = @AR@
 
117
AUTOCONF = @AUTOCONF@
 
118
AUTOHEADER = @AUTOHEADER@
 
119
AUTOMAKE = @AUTOMAKE@
 
120
AWK = @AWK@
 
121
CC = @CC@
 
122
CCDEPMODE = @CCDEPMODE@
 
123
CFLAGS = @CFLAGS@
 
124
CPP = @CPP@
 
125
CPPFLAGS = @CPPFLAGS@
 
126
CXX = @CXX@
 
127
CXXCPP = @CXXCPP@
 
128
CXXDEPMODE = @CXXDEPMODE@
 
129
CXXFLAGS = @CXXFLAGS@
 
130
CYGPATH_W = @CYGPATH_W@
 
131
DEFS = @DEFS@
 
132
DEPDIR = @DEPDIR@
 
133
DLLTOOL = @DLLTOOL@
 
134
DSYMUTIL = @DSYMUTIL@
 
135
DUMPBIN = @DUMPBIN@
 
136
ECHO_C = @ECHO_C@
 
137
ECHO_N = @ECHO_N@
 
138
ECHO_T = @ECHO_T@
 
139
EGREP = @EGREP@
 
140
EXEEXT = @EXEEXT@
 
141
FGREP = @FGREP@
 
142
GREP = @GREP@
 
143
INSTALL = @INSTALL@
 
144
INSTALL_DATA = @INSTALL_DATA@
 
145
INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
146
INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
147
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
148
LD = @LD@
 
149
LDFLAGS = @LDFLAGS@
 
150
LIBOBJS = @LIBOBJS@
 
151
LIBS = @LIBS@
 
152
LIBSQLITE3CC_INTERFACE = @LIBSQLITE3CC_INTERFACE@
 
153
LIBTOOL = @LIBTOOL@
 
154
LIPO = @LIPO@
 
155
LN_S = @LN_S@
 
156
LTLIBOBJS = @LTLIBOBJS@
 
157
MAKEINFO = @MAKEINFO@
 
158
MANIFEST_TOOL = @MANIFEST_TOOL@
 
159
MKDIR_P = @MKDIR_P@
 
160
NM = @NM@
 
161
NMEDIT = @NMEDIT@
 
162
OBJDUMP = @OBJDUMP@
 
163
OBJEXT = @OBJEXT@
 
164
OTOOL = @OTOOL@
 
165
OTOOL64 = @OTOOL64@
 
166
PACKAGE = @PACKAGE@
 
167
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 
168
PACKAGE_NAME = @PACKAGE_NAME@
 
169
PACKAGE_STRING = @PACKAGE_STRING@
 
170
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
171
PACKAGE_URL = @PACKAGE_URL@
 
172
PACKAGE_VERSION = @PACKAGE_VERSION@
 
173
PATH_SEPARATOR = @PATH_SEPARATOR@
 
174
RANLIB = @RANLIB@
 
175
SED = @SED@
 
176
SET_MAKE = @SET_MAKE@
 
177
SHELL = @SHELL@
 
178
STRIP = @STRIP@
 
179
VERSION = @VERSION@
 
180
abs_builddir = @abs_builddir@
 
181
abs_srcdir = @abs_srcdir@
 
182
abs_top_builddir = @abs_top_builddir@
 
183
abs_top_srcdir = @abs_top_srcdir@
 
184
ac_ct_AR = @ac_ct_AR@
 
185
ac_ct_CC = @ac_ct_CC@
 
186
ac_ct_CXX = @ac_ct_CXX@
 
187
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
 
188
am__include = @am__include@
 
189
am__leading_dot = @am__leading_dot@
 
190
am__quote = @am__quote@
 
191
am__tar = @am__tar@
 
192
am__untar = @am__untar@
 
193
bindir = @bindir@
 
194
build = @build@
 
195
build_alias = @build_alias@
 
196
build_cpu = @build_cpu@
 
197
build_os = @build_os@
 
198
build_vendor = @build_vendor@
 
199
builddir = @builddir@
 
200
datadir = @datadir@
 
201
datarootdir = @datarootdir@
 
202
docdir = @docdir@
 
203
dvidir = @dvidir@
 
204
exec_prefix = @exec_prefix@
 
205
host = @host@
 
206
host_alias = @host_alias@
 
207
host_cpu = @host_cpu@
 
208
host_os = @host_os@
 
209
host_vendor = @host_vendor@
 
210
htmldir = @htmldir@
 
211
includedir = @includedir@
 
212
infodir = @infodir@
 
213
install_sh = @install_sh@
 
214
libdir = @libdir@
 
215
libexecdir = @libexecdir@
 
216
localedir = @localedir@
 
217
localstatedir = @localstatedir@
 
218
mandir = @mandir@
 
219
mkdir_p = @mkdir_p@
 
220
oldincludedir = @oldincludedir@
 
221
pdfdir = @pdfdir@
 
222
prefix = @prefix@
 
223
program_transform_name = @program_transform_name@
 
224
psdir = @psdir@
 
225
sbindir = @sbindir@
 
226
sharedstatedir = @sharedstatedir@
 
227
srcdir = @srcdir@
 
228
sysconfdir = @sysconfdir@
 
229
target_alias = @target_alias@
 
230
top_build_prefix = @top_build_prefix@
 
231
top_builddir = @top_builddir@
 
232
top_srcdir = @top_srcdir@
 
233
SUBDIRS = src include test
 
234
ACLOCAL_AMFLAGS = -I m4
 
235
all: config.h
 
236
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
 
237
 
 
238
.SUFFIXES:
 
239
am--refresh: Makefile
 
240
        @:
 
241
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
242
        @for dep in $?; do \
 
243
          case '$(am__configure_deps)' in \
 
244
            *$$dep*) \
 
245
              echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
 
246
              $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
 
247
                && exit 0; \
 
248
              exit 1;; \
 
249
          esac; \
 
250
        done; \
 
251
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
 
252
        $(am__cd) $(top_srcdir) && \
 
253
          $(AUTOMAKE) --foreign Makefile
 
254
.PRECIOUS: Makefile
 
255
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
256
        @case '$?' in \
 
257
          *config.status*) \
 
258
            echo ' $(SHELL) ./config.status'; \
 
259
            $(SHELL) ./config.status;; \
 
260
          *) \
 
261
            echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
 
262
            cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
 
263
        esac;
 
264
 
 
265
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
266
        $(SHELL) ./config.status --recheck
 
267
 
 
268
$(top_srcdir)/configure:  $(am__configure_deps)
 
269
        $(am__cd) $(srcdir) && $(AUTOCONF)
 
270
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
271
        $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
 
272
$(am__aclocal_m4_deps):
 
273
 
 
274
config.h: stamp-h1
 
275
        @if test ! -f $@; then rm -f stamp-h1; else :; fi
 
276
        @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
 
277
 
 
278
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
 
279
        @rm -f stamp-h1
 
280
        cd $(top_builddir) && $(SHELL) ./config.status config.h
 
281
$(srcdir)/config.h.in:  $(am__configure_deps) 
 
282
        ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
 
283
        rm -f stamp-h1
 
284
        touch $@
 
285
 
 
286
distclean-hdr:
 
287
        -rm -f config.h stamp-h1
 
288
 
 
289
mostlyclean-libtool:
 
290
        -rm -f *.lo
 
291
 
 
292
clean-libtool:
 
293
        -rm -rf .libs _libs
 
294
 
 
295
distclean-libtool:
 
296
        -rm -f libtool config.lt
 
297
 
 
298
# This directory's subdirectories are mostly independent; you can cd
 
299
# into them and run `make' without going through this Makefile.
 
300
# To change the values of `make' variables: instead of editing Makefiles,
 
301
# (1) if the variable is set in `config.status', edit `config.status'
 
302
#     (which will cause the Makefiles to be regenerated when you run `make');
 
303
# (2) otherwise, pass the desired values on the `make' command line.
 
304
$(RECURSIVE_TARGETS):
 
305
        @fail= failcom='exit 1'; \
 
306
        for f in x $$MAKEFLAGS; do \
 
307
          case $$f in \
 
308
            *=* | --[!k]*);; \
 
309
            *k*) failcom='fail=yes';; \
 
310
          esac; \
 
311
        done; \
 
312
        dot_seen=no; \
 
313
        target=`echo $@ | sed s/-recursive//`; \
 
314
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
315
          echo "Making $$target in $$subdir"; \
 
316
          if test "$$subdir" = "."; then \
 
317
            dot_seen=yes; \
 
318
            local_target="$$target-am"; \
 
319
          else \
 
320
            local_target="$$target"; \
 
321
          fi; \
 
322
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
323
          || eval $$failcom; \
 
324
        done; \
 
325
        if test "$$dot_seen" = "no"; then \
 
326
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
327
        fi; test -z "$$fail"
 
328
 
 
329
$(RECURSIVE_CLEAN_TARGETS):
 
330
        @fail= failcom='exit 1'; \
 
331
        for f in x $$MAKEFLAGS; do \
 
332
          case $$f in \
 
333
            *=* | --[!k]*);; \
 
334
            *k*) failcom='fail=yes';; \
 
335
          esac; \
 
336
        done; \
 
337
        dot_seen=no; \
 
338
        case "$@" in \
 
339
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
340
          *) list='$(SUBDIRS)' ;; \
 
341
        esac; \
 
342
        rev=''; for subdir in $$list; do \
 
343
          if test "$$subdir" = "."; then :; else \
 
344
            rev="$$subdir $$rev"; \
 
345
          fi; \
 
346
        done; \
 
347
        rev="$$rev ."; \
 
348
        target=`echo $@ | sed s/-recursive//`; \
 
349
        for subdir in $$rev; do \
 
350
          echo "Making $$target in $$subdir"; \
 
351
          if test "$$subdir" = "."; then \
 
352
            local_target="$$target-am"; \
 
353
          else \
 
354
            local_target="$$target"; \
 
355
          fi; \
 
356
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
357
          || eval $$failcom; \
 
358
        done && test -z "$$fail"
 
359
tags-recursive:
 
360
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
361
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
362
        done
 
363
ctags-recursive:
 
364
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
365
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
366
        done
 
367
 
 
368
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
 
369
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
 
370
        unique=`for i in $$list; do \
 
371
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
372
          done | \
 
373
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
374
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
375
        mkid -fID $$unique
 
376
tags: TAGS
 
377
 
 
378
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
 
379
                $(TAGS_FILES) $(LISP)
 
380
        set x; \
 
381
        here=`pwd`; \
 
382
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
383
          include_option=--etags-include; \
 
384
          empty_fix=.; \
 
385
        else \
 
386
          include_option=--include; \
 
387
          empty_fix=; \
 
388
        fi; \
 
389
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
390
          if test "$$subdir" = .; then :; else \
 
391
            test ! -f $$subdir/TAGS || \
 
392
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 
393
          fi; \
 
394
        done; \
 
395
        list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
 
396
        unique=`for i in $$list; do \
 
397
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
398
          done | \
 
399
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
400
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
401
        shift; \
 
402
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 
403
          test -n "$$unique" || unique=$$empty_fix; \
 
404
          if test $$# -gt 0; then \
 
405
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
406
              "$$@" $$unique; \
 
407
          else \
 
408
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
409
              $$unique; \
 
410
          fi; \
 
411
        fi
 
412
ctags: CTAGS
 
413
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
 
414
                $(TAGS_FILES) $(LISP)
 
415
        list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
 
416
        unique=`for i in $$list; do \
 
417
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
418
          done | \
 
419
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
420
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
421
        test -z "$(CTAGS_ARGS)$$unique" \
 
422
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 
423
             $$unique
 
424
 
 
425
GTAGS:
 
426
        here=`$(am__cd) $(top_builddir) && pwd` \
 
427
          && $(am__cd) $(top_srcdir) \
 
428
          && gtags -i $(GTAGS_ARGS) "$$here"
 
429
 
 
430
distclean-tags:
 
431
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
 
432
 
 
433
distdir: $(DISTFILES)
 
434
        $(am__remove_distdir)
 
435
        test -d "$(distdir)" || mkdir "$(distdir)"
 
436
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
437
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
438
        list='$(DISTFILES)'; \
 
439
          dist_files=`for file in $$list; do echo $$file; done | \
 
440
          sed -e "s|^$$srcdirstrip/||;t" \
 
441
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
 
442
        case $$dist_files in \
 
443
          */*) $(MKDIR_P) `echo "$$dist_files" | \
 
444
                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
 
445
                           sort -u` ;; \
 
446
        esac; \
 
447
        for file in $$dist_files; do \
 
448
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
449
          if test -d $$d/$$file; then \
 
450
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
451
            if test -d "$(distdir)/$$file"; then \
 
452
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
453
            fi; \
 
454
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
455
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
456
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
457
            fi; \
 
458
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
 
459
          else \
 
460
            test -f "$(distdir)/$$file" \
 
461
            || cp -p $$d/$$file "$(distdir)/$$file" \
 
462
            || exit 1; \
 
463
          fi; \
 
464
        done
 
465
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
466
          if test "$$subdir" = .; then :; else \
 
467
            test -d "$(distdir)/$$subdir" \
 
468
            || $(MKDIR_P) "$(distdir)/$$subdir" \
 
469
            || exit 1; \
 
470
          fi; \
 
471
        done
 
472
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
473
          if test "$$subdir" = .; then :; else \
 
474
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
475
            $(am__relativize); \
 
476
            new_distdir=$$reldir; \
 
477
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
478
            $(am__relativize); \
 
479
            new_top_distdir=$$reldir; \
 
480
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
481
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
482
            ($(am__cd) $$subdir && \
 
483
              $(MAKE) $(AM_MAKEFLAGS) \
 
484
                top_distdir="$$new_top_distdir" \
 
485
                distdir="$$new_distdir" \
 
486
                am__remove_distdir=: \
 
487
                am__skip_length_check=: \
 
488
                am__skip_mode_fix=: \
 
489
                distdir) \
 
490
              || exit 1; \
 
491
          fi; \
 
492
        done
 
493
        -test -n "$(am__skip_mode_fix)" \
 
494
        || find "$(distdir)" -type d ! -perm -755 \
 
495
                -exec chmod u+rwx,go+rx {} \; -o \
 
496
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
 
497
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
 
498
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
 
499
        || chmod -R a+r "$(distdir)"
 
500
dist-gzip: distdir
 
501
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
 
502
        $(am__remove_distdir)
 
503
 
 
504
dist-bzip2: distdir
 
505
        tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
 
506
        $(am__remove_distdir)
 
507
 
 
508
dist-lzip: distdir
 
509
        tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
 
510
        $(am__remove_distdir)
 
511
 
 
512
dist-lzma: distdir
 
513
        tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
 
514
        $(am__remove_distdir)
 
515
dist-xz: distdir
 
516
        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
 
517
        $(am__remove_distdir)
 
518
 
 
519
dist-tarZ: distdir
 
520
        tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
 
521
        $(am__remove_distdir)
 
522
 
 
523
dist-shar: distdir
 
524
        shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
 
525
        $(am__remove_distdir)
 
526
 
 
527
dist-zip: distdir
 
528
        -rm -f $(distdir).zip
 
529
        zip -rq $(distdir).zip $(distdir)
 
530
        $(am__remove_distdir)
 
531
 
 
532
dist dist-all: distdir
 
533
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
 
534
        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
 
535
        $(am__remove_distdir)
 
536
 
 
537
# This target untars the dist file and tries a VPATH configuration.  Then
 
538
# it guarantees that the distribution is self-contained by making another
 
539
# tarfile.
 
540
distcheck: dist
 
541
        case '$(DIST_ARCHIVES)' in \
 
542
        *.tar.gz*) \
 
543
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
 
544
        *.tar.bz2*) \
 
545
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
 
546
        *.tar.lzma*) \
 
547
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
 
548
        *.tar.lz*) \
 
549
          lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
 
550
        *.tar.xz*) \
 
551
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
 
552
        *.tar.Z*) \
 
553
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
 
554
        *.shar.gz*) \
 
555
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
 
556
        *.zip*) \
 
557
          unzip $(distdir).zip ;;\
 
558
        esac
 
559
        chmod -R a-w $(distdir); chmod a+w $(distdir)
 
560
        mkdir $(distdir)/_build
 
561
        mkdir $(distdir)/_inst
 
562
        chmod a-w $(distdir)
 
563
        test -d $(distdir)/_build || exit 0; \
 
564
        dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
 
565
          && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
 
566
          && am__cwd=`pwd` \
 
567
          && $(am__cd) $(distdir)/_build \
 
568
          && ../configure --srcdir=.. --prefix="$$dc_install_base" \
 
569
            $(AM_DISTCHECK_CONFIGURE_FLAGS) \
 
570
            $(DISTCHECK_CONFIGURE_FLAGS) \
 
571
          && $(MAKE) $(AM_MAKEFLAGS) \
 
572
          && $(MAKE) $(AM_MAKEFLAGS) dvi \
 
573
          && $(MAKE) $(AM_MAKEFLAGS) check \
 
574
          && $(MAKE) $(AM_MAKEFLAGS) install \
 
575
          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
 
576
          && $(MAKE) $(AM_MAKEFLAGS) uninstall \
 
577
          && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
 
578
                distuninstallcheck \
 
579
          && chmod -R a-w "$$dc_install_base" \
 
580
          && ({ \
 
581
               (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
 
582
               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
 
583
               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
 
584
               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
 
585
                    distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
 
586
              } || { rm -rf "$$dc_destdir"; exit 1; }) \
 
587
          && rm -rf "$$dc_destdir" \
 
588
          && $(MAKE) $(AM_MAKEFLAGS) dist \
 
589
          && rm -rf $(DIST_ARCHIVES) \
 
590
          && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
 
591
          && cd "$$am__cwd" \
 
592
          || exit 1
 
593
        $(am__remove_distdir)
 
594
        @(echo "$(distdir) archives ready for distribution: "; \
 
595
          list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
 
596
          sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
 
597
distuninstallcheck:
 
598
        @test -n '$(distuninstallcheck_dir)' || { \
 
599
          echo 'ERROR: trying to run $@ with an empty' \
 
600
               '$$(distuninstallcheck_dir)' >&2; \
 
601
          exit 1; \
 
602
        }; \
 
603
        $(am__cd) '$(distuninstallcheck_dir)' || { \
 
604
          echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
 
605
          exit 1; \
 
606
        }; \
 
607
        test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
 
608
           || { echo "ERROR: files left after uninstall:" ; \
 
609
                if test -n "$(DESTDIR)"; then \
 
610
                  echo "  (check DESTDIR support)"; \
 
611
                fi ; \
 
612
                $(distuninstallcheck_listfiles) ; \
 
613
                exit 1; } >&2
 
614
distcleancheck: distclean
 
615
        @if test '$(srcdir)' = . ; then \
 
616
          echo "ERROR: distcleancheck can only run from a VPATH build" ; \
 
617
          exit 1 ; \
 
618
        fi
 
619
        @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
 
620
          || { echo "ERROR: files left in build directory after distclean:" ; \
 
621
               $(distcleancheck_listfiles) ; \
 
622
               exit 1; } >&2
 
623
check-am: all-am
 
624
check: check-recursive
 
625
all-am: Makefile config.h
 
626
installdirs: installdirs-recursive
 
627
installdirs-am:
 
628
install: install-recursive
 
629
install-exec: install-exec-recursive
 
630
install-data: install-data-recursive
 
631
uninstall: uninstall-recursive
 
632
 
 
633
install-am: all-am
 
634
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
635
 
 
636
installcheck: installcheck-recursive
 
637
install-strip:
 
638
        if test -z '$(STRIP)'; then \
 
639
          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
640
            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
641
              install; \
 
642
        else \
 
643
          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
644
            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
645
            "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 
646
        fi
 
647
mostlyclean-generic:
 
648
 
 
649
clean-generic:
 
650
 
 
651
distclean-generic:
 
652
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
653
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
 
654
 
 
655
maintainer-clean-generic:
 
656
        @echo "This command is intended for maintainers to use"
 
657
        @echo "it deletes files that may require special tools to rebuild."
 
658
clean: clean-recursive
 
659
 
 
660
clean-am: clean-generic clean-libtool mostlyclean-am
 
661
 
 
662
distclean: distclean-recursive
 
663
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
 
664
        -rm -f Makefile
 
665
distclean-am: clean-am distclean-generic distclean-hdr \
 
666
        distclean-libtool distclean-tags
 
667
 
 
668
dvi: dvi-recursive
 
669
 
 
670
dvi-am:
 
671
 
 
672
html: html-recursive
 
673
 
 
674
html-am:
 
675
 
 
676
info: info-recursive
 
677
 
 
678
info-am:
 
679
 
 
680
install-data-am:
 
681
 
 
682
install-dvi: install-dvi-recursive
 
683
 
 
684
install-dvi-am:
 
685
 
 
686
install-exec-am:
 
687
 
 
688
install-html: install-html-recursive
 
689
 
 
690
install-html-am:
 
691
 
 
692
install-info: install-info-recursive
 
693
 
 
694
install-info-am:
 
695
 
 
696
install-man:
 
697
 
 
698
install-pdf: install-pdf-recursive
 
699
 
 
700
install-pdf-am:
 
701
 
 
702
install-ps: install-ps-recursive
 
703
 
 
704
install-ps-am:
 
705
 
 
706
installcheck-am:
 
707
 
 
708
maintainer-clean: maintainer-clean-recursive
 
709
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
 
710
        -rm -rf $(top_srcdir)/autom4te.cache
 
711
        -rm -f Makefile
 
712
maintainer-clean-am: distclean-am maintainer-clean-generic
 
713
 
 
714
mostlyclean: mostlyclean-recursive
 
715
 
 
716
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
717
 
 
718
pdf: pdf-recursive
 
719
 
 
720
pdf-am:
 
721
 
 
722
ps: ps-recursive
 
723
 
 
724
ps-am:
 
725
 
 
726
uninstall-am:
 
727
 
 
728
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
 
729
        ctags-recursive install-am install-strip tags-recursive
 
730
 
 
731
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
 
732
        all all-am am--refresh check check-am clean clean-generic \
 
733
        clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
 
734
        dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \
 
735
        dist-zip distcheck distclean distclean-generic distclean-hdr \
 
736
        distclean-libtool distclean-tags distcleancheck distdir \
 
737
        distuninstallcheck dvi dvi-am html html-am info info-am \
 
738
        install install-am install-data install-data-am install-dvi \
 
739
        install-dvi-am install-exec install-exec-am install-html \
 
740
        install-html-am install-info install-info-am install-man \
 
741
        install-pdf install-pdf-am install-ps install-ps-am \
 
742
        install-strip installcheck installcheck-am installdirs \
 
743
        installdirs-am maintainer-clean maintainer-clean-generic \
 
744
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
 
745
        ps ps-am tags tags-recursive uninstall uninstall-am
 
746
 
 
747
 
 
748
# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
749
# Otherwise a system limit (for SysV at least) may be exceeded.
 
750
.NOEXPORT: