~ubuntu-branches/ubuntu/natty/alsa-lib/natty

« back to all changes in this revision

Viewing changes to modules/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2010-05-19 11:04:50 UTC
  • mfrom: (1.1.14 upstream) (2.2.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100519110450-79ixzqrupz0ylqjb
Tags: 1.0.23-0ubuntu1
* New upstream release
  - debian/patches/:
    + Dont_leak_timer_fd_on_pcm_slave_close.patch
    + Fix-S24_3LE-softvol-distortion.patc
    + Fix-modem-on-hook.patch
    + Fix-stream-state-updates.patch
    + Fix-pcm-timer-open-subdevice-pcm_hw.patch
    + b9dbee6-Fix-threading-drain.patch
      - Dropped
    + Fix-str-lit-no-format.patch
    + lp433573-Support-Echo3G.patch
      - retained, need to be sent upstream
* Merge from debian unstable, remaining changes:
  - debian/rules:
    + Don't bail when removing include/alsa
  - debian/control: Add Vcs-Bzr URI
  - Add configuration files for bluetooth/bluez-alsa and pulseaudio
  - debian/libasound2.install: Ship smixer plugins for native and bi-arch
    packages
  - drop libcxxtools-dev build dependency, its in universe
  - add --with-plugindir=\$${prefix}/lib/alsa-lib to configure-stamp
  - Demote libc6-i386 pre-depends to depends for lib32asound2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 
6
# Inc.
6
7
# This Makefile.in is free software; the Free Software Foundation
7
8
# gives unlimited permission to copy and/or distribute it,
8
9
# with or without modifications, as long as this notice is preserved.
13
14
# PARTICULAR PURPOSE.
14
15
 
15
16
@SET_MAKE@
16
 
srcdir = @srcdir@
17
 
top_srcdir = @top_srcdir@
18
17
VPATH = @srcdir@
19
18
pkgdatadir = $(datadir)/@PACKAGE@
 
19
pkgincludedir = $(includedir)/@PACKAGE@
20
20
pkglibdir = $(libdir)/@PACKAGE@
21
 
pkgincludedir = $(includedir)/@PACKAGE@
22
 
top_builddir = ..
 
21
pkglibexecdir = $(libexecdir)/@PACKAGE@
23
22
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
24
 
INSTALL = @INSTALL@
25
23
install_sh_DATA = $(install_sh) -c -m 644
26
24
install_sh_PROGRAM = $(install_sh) -c
27
25
install_sh_SCRIPT = $(install_sh) -c
45
43
mkinstalldirs = $(install_sh) -d
46
44
CONFIG_HEADER = $(top_builddir)/include/config.h
47
45
CONFIG_CLEAN_FILES =
 
46
CONFIG_CLEAN_VPATH_FILES =
 
47
AM_V_GEN = $(am__v_GEN_$(V))
 
48
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
 
49
am__v_GEN_0 = @echo "  GEN   " $@;
 
50
AM_V_at = $(am__v_at_$(V))
 
51
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
 
52
am__v_at_0 = @
48
53
SOURCES =
49
54
DIST_SOURCES =
50
55
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
51
56
        html-recursive info-recursive install-data-recursive \
52
 
        install-exec-recursive install-info-recursive \
53
 
        install-recursive installcheck-recursive installdirs-recursive \
54
 
        pdf-recursive ps-recursive uninstall-info-recursive \
55
 
        uninstall-recursive
 
57
        install-dvi-recursive install-exec-recursive \
 
58
        install-html-recursive install-info-recursive \
 
59
        install-pdf-recursive install-ps-recursive install-recursive \
 
60
        installcheck-recursive installdirs-recursive pdf-recursive \
 
61
        ps-recursive uninstall-recursive
 
62
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
 
63
  distclean-recursive maintainer-clean-recursive
 
64
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
65
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
66
        distdir
56
67
ETAGS = etags
57
68
CTAGS = ctags
58
69
DIST_SUBDIRS = mixer
59
70
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
71
am__relativize = \
 
72
  dir0=`pwd`; \
 
73
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
74
  sed_rest='s,^[^/]*/*,,'; \
 
75
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
76
  sed_butlast='s,/*[^/]*$$,,'; \
 
77
  while test -n "$$dir1"; do \
 
78
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
79
    if test "$$first" != "."; then \
 
80
      if test "$$first" = ".."; then \
 
81
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
82
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
83
      else \
 
84
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
85
        if test "$$first2" = "$$first"; then \
 
86
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
87
        else \
 
88
          dir2="../$$dir2"; \
 
89
        fi; \
 
90
        dir0="$$dir0"/"$$first"; \
 
91
      fi; \
 
92
    fi; \
 
93
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
94
  done; \
 
95
  reldir="$$dir2"
60
96
ACLOCAL = @ACLOCAL@
61
97
ALSA_CONFIG_DIR = @ALSA_CONFIG_DIR@
62
98
ALSA_DEPLIBS = @ALSA_DEPLIBS@
63
 
ALSA_HSEARCH_R_FALSE = @ALSA_HSEARCH_R_FALSE@
64
 
ALSA_HSEARCH_R_TRUE = @ALSA_HSEARCH_R_TRUE@
65
99
ALSA_PLUGIN_DIR = @ALSA_PLUGIN_DIR@
66
 
AMDEP_FALSE = @AMDEP_FALSE@
67
 
AMDEP_TRUE = @AMDEP_TRUE@
68
100
AMTAR = @AMTAR@
 
101
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
69
102
AR = @AR@
70
103
AUTOCONF = @AUTOCONF@
71
104
AUTOHEADER = @AUTOHEADER@
72
105
AUTOMAKE = @AUTOMAKE@
73
106
AWK = @AWK@
74
 
BUILD_ALISP_FALSE = @BUILD_ALISP_FALSE@
75
 
BUILD_ALISP_TRUE = @BUILD_ALISP_TRUE@
76
 
BUILD_CTL_PLUGIN_EXT_FALSE = @BUILD_CTL_PLUGIN_EXT_FALSE@
77
 
BUILD_CTL_PLUGIN_EXT_TRUE = @BUILD_CTL_PLUGIN_EXT_TRUE@
78
 
BUILD_CTL_PLUGIN_FALSE = @BUILD_CTL_PLUGIN_FALSE@
79
 
BUILD_CTL_PLUGIN_SHM_FALSE = @BUILD_CTL_PLUGIN_SHM_FALSE@
80
 
BUILD_CTL_PLUGIN_SHM_TRUE = @BUILD_CTL_PLUGIN_SHM_TRUE@
81
 
BUILD_CTL_PLUGIN_TRUE = @BUILD_CTL_PLUGIN_TRUE@
82
 
BUILD_HWDEP_FALSE = @BUILD_HWDEP_FALSE@
83
 
BUILD_HWDEP_TRUE = @BUILD_HWDEP_TRUE@
84
 
BUILD_MIXER_FALSE = @BUILD_MIXER_FALSE@
85
 
BUILD_MIXER_TRUE = @BUILD_MIXER_TRUE@
86
 
BUILD_MODULES_FALSE = @BUILD_MODULES_FALSE@
87
 
BUILD_MODULES_TRUE = @BUILD_MODULES_TRUE@
88
 
BUILD_PCM_FALSE = @BUILD_PCM_FALSE@
89
 
BUILD_PCM_PLUGIN_ADPCM_FALSE = @BUILD_PCM_PLUGIN_ADPCM_FALSE@
90
 
BUILD_PCM_PLUGIN_ADPCM_TRUE = @BUILD_PCM_PLUGIN_ADPCM_TRUE@
91
 
BUILD_PCM_PLUGIN_ALAW_FALSE = @BUILD_PCM_PLUGIN_ALAW_FALSE@
92
 
BUILD_PCM_PLUGIN_ALAW_TRUE = @BUILD_PCM_PLUGIN_ALAW_TRUE@
93
 
BUILD_PCM_PLUGIN_ASYM_FALSE = @BUILD_PCM_PLUGIN_ASYM_FALSE@
94
 
BUILD_PCM_PLUGIN_ASYM_TRUE = @BUILD_PCM_PLUGIN_ASYM_TRUE@
95
 
BUILD_PCM_PLUGIN_COPY_FALSE = @BUILD_PCM_PLUGIN_COPY_FALSE@
96
 
BUILD_PCM_PLUGIN_COPY_TRUE = @BUILD_PCM_PLUGIN_COPY_TRUE@
97
 
BUILD_PCM_PLUGIN_DMIX_FALSE = @BUILD_PCM_PLUGIN_DMIX_FALSE@
98
 
BUILD_PCM_PLUGIN_DMIX_TRUE = @BUILD_PCM_PLUGIN_DMIX_TRUE@
99
 
BUILD_PCM_PLUGIN_DSHARE_FALSE = @BUILD_PCM_PLUGIN_DSHARE_FALSE@
100
 
BUILD_PCM_PLUGIN_DSHARE_TRUE = @BUILD_PCM_PLUGIN_DSHARE_TRUE@
101
 
BUILD_PCM_PLUGIN_DSNOOP_FALSE = @BUILD_PCM_PLUGIN_DSNOOP_FALSE@
102
 
BUILD_PCM_PLUGIN_DSNOOP_TRUE = @BUILD_PCM_PLUGIN_DSNOOP_TRUE@
103
 
BUILD_PCM_PLUGIN_EMPTY_FALSE = @BUILD_PCM_PLUGIN_EMPTY_FALSE@
104
 
BUILD_PCM_PLUGIN_EMPTY_TRUE = @BUILD_PCM_PLUGIN_EMPTY_TRUE@
105
 
BUILD_PCM_PLUGIN_EXTPLUG_FALSE = @BUILD_PCM_PLUGIN_EXTPLUG_FALSE@
106
 
BUILD_PCM_PLUGIN_EXTPLUG_TRUE = @BUILD_PCM_PLUGIN_EXTPLUG_TRUE@
107
 
BUILD_PCM_PLUGIN_FALSE = @BUILD_PCM_PLUGIN_FALSE@
108
 
BUILD_PCM_PLUGIN_FILE_FALSE = @BUILD_PCM_PLUGIN_FILE_FALSE@
109
 
BUILD_PCM_PLUGIN_FILE_TRUE = @BUILD_PCM_PLUGIN_FILE_TRUE@
110
 
BUILD_PCM_PLUGIN_HOOKS_FALSE = @BUILD_PCM_PLUGIN_HOOKS_FALSE@
111
 
BUILD_PCM_PLUGIN_HOOKS_TRUE = @BUILD_PCM_PLUGIN_HOOKS_TRUE@
112
 
BUILD_PCM_PLUGIN_IEC958_FALSE = @BUILD_PCM_PLUGIN_IEC958_FALSE@
113
 
BUILD_PCM_PLUGIN_IEC958_TRUE = @BUILD_PCM_PLUGIN_IEC958_TRUE@
114
 
BUILD_PCM_PLUGIN_IOPLUG_FALSE = @BUILD_PCM_PLUGIN_IOPLUG_FALSE@
115
 
BUILD_PCM_PLUGIN_IOPLUG_TRUE = @BUILD_PCM_PLUGIN_IOPLUG_TRUE@
116
 
BUILD_PCM_PLUGIN_LADSPA_FALSE = @BUILD_PCM_PLUGIN_LADSPA_FALSE@
117
 
BUILD_PCM_PLUGIN_LADSPA_TRUE = @BUILD_PCM_PLUGIN_LADSPA_TRUE@
118
 
BUILD_PCM_PLUGIN_LFLOAT_FALSE = @BUILD_PCM_PLUGIN_LFLOAT_FALSE@
119
 
BUILD_PCM_PLUGIN_LFLOAT_TRUE = @BUILD_PCM_PLUGIN_LFLOAT_TRUE@
120
 
BUILD_PCM_PLUGIN_LINEAR_FALSE = @BUILD_PCM_PLUGIN_LINEAR_FALSE@
121
 
BUILD_PCM_PLUGIN_LINEAR_TRUE = @BUILD_PCM_PLUGIN_LINEAR_TRUE@
122
 
BUILD_PCM_PLUGIN_METER_FALSE = @BUILD_PCM_PLUGIN_METER_FALSE@
123
 
BUILD_PCM_PLUGIN_METER_TRUE = @BUILD_PCM_PLUGIN_METER_TRUE@
124
 
BUILD_PCM_PLUGIN_MMAP_EMUL_FALSE = @BUILD_PCM_PLUGIN_MMAP_EMUL_FALSE@
125
 
BUILD_PCM_PLUGIN_MMAP_EMUL_TRUE = @BUILD_PCM_PLUGIN_MMAP_EMUL_TRUE@
126
 
BUILD_PCM_PLUGIN_MULAW_FALSE = @BUILD_PCM_PLUGIN_MULAW_FALSE@
127
 
BUILD_PCM_PLUGIN_MULAW_TRUE = @BUILD_PCM_PLUGIN_MULAW_TRUE@
128
 
BUILD_PCM_PLUGIN_MULTI_FALSE = @BUILD_PCM_PLUGIN_MULTI_FALSE@
129
 
BUILD_PCM_PLUGIN_MULTI_TRUE = @BUILD_PCM_PLUGIN_MULTI_TRUE@
130
 
BUILD_PCM_PLUGIN_NULL_FALSE = @BUILD_PCM_PLUGIN_NULL_FALSE@
131
 
BUILD_PCM_PLUGIN_NULL_TRUE = @BUILD_PCM_PLUGIN_NULL_TRUE@
132
 
BUILD_PCM_PLUGIN_PLUG_FALSE = @BUILD_PCM_PLUGIN_PLUG_FALSE@
133
 
BUILD_PCM_PLUGIN_PLUG_TRUE = @BUILD_PCM_PLUGIN_PLUG_TRUE@
134
 
BUILD_PCM_PLUGIN_RATE_FALSE = @BUILD_PCM_PLUGIN_RATE_FALSE@
135
 
BUILD_PCM_PLUGIN_RATE_TRUE = @BUILD_PCM_PLUGIN_RATE_TRUE@
136
 
BUILD_PCM_PLUGIN_ROUTE_FALSE = @BUILD_PCM_PLUGIN_ROUTE_FALSE@
137
 
BUILD_PCM_PLUGIN_ROUTE_TRUE = @BUILD_PCM_PLUGIN_ROUTE_TRUE@
138
 
BUILD_PCM_PLUGIN_SHARE_FALSE = @BUILD_PCM_PLUGIN_SHARE_FALSE@
139
 
BUILD_PCM_PLUGIN_SHARE_TRUE = @BUILD_PCM_PLUGIN_SHARE_TRUE@
140
 
BUILD_PCM_PLUGIN_SHM_FALSE = @BUILD_PCM_PLUGIN_SHM_FALSE@
141
 
BUILD_PCM_PLUGIN_SHM_TRUE = @BUILD_PCM_PLUGIN_SHM_TRUE@
142
 
BUILD_PCM_PLUGIN_SOFTVOL_FALSE = @BUILD_PCM_PLUGIN_SOFTVOL_FALSE@
143
 
BUILD_PCM_PLUGIN_SOFTVOL_TRUE = @BUILD_PCM_PLUGIN_SOFTVOL_TRUE@
144
 
BUILD_PCM_PLUGIN_TRUE = @BUILD_PCM_PLUGIN_TRUE@
145
 
BUILD_PCM_TRUE = @BUILD_PCM_TRUE@
146
 
BUILD_PYTHON_FALSE = @BUILD_PYTHON_FALSE@
147
 
BUILD_PYTHON_TRUE = @BUILD_PYTHON_TRUE@
148
 
BUILD_RAWMIDI_FALSE = @BUILD_RAWMIDI_FALSE@
149
 
BUILD_RAWMIDI_TRUE = @BUILD_RAWMIDI_TRUE@
150
 
BUILD_SEQ_FALSE = @BUILD_SEQ_FALSE@
151
 
BUILD_SEQ_TRUE = @BUILD_SEQ_TRUE@
152
107
CC = @CC@
153
108
CCDEPMODE = @CCDEPMODE@
154
109
CFLAGS = @CFLAGS@
155
110
CPP = @CPP@
156
111
CPPFLAGS = @CPPFLAGS@
157
 
CXX = @CXX@
158
 
CXXCPP = @CXXCPP@
159
 
CXXDEPMODE = @CXXDEPMODE@
160
 
CXXFLAGS = @CXXFLAGS@
161
112
CYGPATH_W = @CYGPATH_W@
162
113
DEFS = @DEFS@
163
114
DEPDIR = @DEPDIR@
164
 
ECHO = @ECHO@
 
115
DSYMUTIL = @DSYMUTIL@
 
116
DUMPBIN = @DUMPBIN@
165
117
ECHO_C = @ECHO_C@
166
118
ECHO_N = @ECHO_N@
167
119
ECHO_T = @ECHO_T@
168
120
EGREP = @EGREP@
169
121
EXEEXT = @EXEEXT@
170
 
F77 = @F77@
171
 
FFLAGS = @FFLAGS@
 
122
FGREP = @FGREP@
172
123
GREP = @GREP@
 
124
INSTALL = @INSTALL@
173
125
INSTALL_DATA = @INSTALL_DATA@
174
 
INSTALL_M4_FALSE = @INSTALL_M4_FALSE@
175
 
INSTALL_M4_TRUE = @INSTALL_M4_TRUE@
176
126
INSTALL_PROGRAM = @INSTALL_PROGRAM@
177
127
INSTALL_SCRIPT = @INSTALL_SCRIPT@
178
128
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
179
 
KEEP_OLD_SYMBOLS_FALSE = @KEEP_OLD_SYMBOLS_FALSE@
180
 
KEEP_OLD_SYMBOLS_TRUE = @KEEP_OLD_SYMBOLS_TRUE@
 
129
LD = @LD@
181
130
LDFLAGS = @LDFLAGS@
182
131
LIBOBJS = @LIBOBJS@
183
132
LIBS = @LIBS@
184
133
LIBTOOL = @LIBTOOL@
185
134
LIBTOOL_VERSION_INFO = @LIBTOOL_VERSION_INFO@
 
135
LIPO = @LIPO@
186
136
LN_S = @LN_S@
187
137
LTLIBOBJS = @LTLIBOBJS@
 
138
MAINT = @MAINT@
188
139
MAKEINFO = @MAKEINFO@
 
140
MKDIR_P = @MKDIR_P@
 
141
NM = @NM@
 
142
NMEDIT = @NMEDIT@
 
143
OBJDUMP = @OBJDUMP@
189
144
OBJEXT = @OBJEXT@
 
145
OTOOL = @OTOOL@
 
146
OTOOL64 = @OTOOL64@
190
147
PACKAGE = @PACKAGE@
191
148
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
192
149
PACKAGE_NAME = @PACKAGE_NAME@
193
150
PACKAGE_STRING = @PACKAGE_STRING@
194
151
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
152
PACKAGE_URL = @PACKAGE_URL@
195
153
PACKAGE_VERSION = @PACKAGE_VERSION@
196
154
PATH_SEPARATOR = @PATH_SEPARATOR@
197
155
PYTHON_INCLUDES = @PYTHON_INCLUDES@
198
156
PYTHON_LIBS = @PYTHON_LIBS@
199
157
RANLIB = @RANLIB@
 
158
SED = @SED@
200
159
SET_MAKE = @SET_MAKE@
201
160
SHELL = @SHELL@
202
161
SND_LIB_EXTRAVER = @SND_LIB_EXTRAVER@
205
164
SND_LIB_SUBMINOR = @SND_LIB_SUBMINOR@
206
165
SND_LIB_VERSION = @SND_LIB_VERSION@
207
166
STRIP = @STRIP@
208
 
SYMBOLIC_FUNCTIONS_FALSE = @SYMBOLIC_FUNCTIONS_FALSE@
209
 
SYMBOLIC_FUNCTIONS_TRUE = @SYMBOLIC_FUNCTIONS_TRUE@
210
167
SYMBOL_PREFIX = @SYMBOL_PREFIX@
211
168
VERSION = @VERSION@
212
 
VERSIONED_SYMBOLS_FALSE = @VERSIONED_SYMBOLS_FALSE@
213
 
VERSIONED_SYMBOLS_TRUE = @VERSIONED_SYMBOLS_TRUE@
 
169
abs_builddir = @abs_builddir@
 
170
abs_srcdir = @abs_srcdir@
 
171
abs_top_builddir = @abs_top_builddir@
 
172
abs_top_srcdir = @abs_top_srcdir@
214
173
ac_ct_CC = @ac_ct_CC@
215
 
ac_ct_CXX = @ac_ct_CXX@
216
 
ac_ct_F77 = @ac_ct_F77@
217
 
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
218
 
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
219
 
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
220
 
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
 
174
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
221
175
am__include = @am__include@
222
176
am__leading_dot = @am__leading_dot@
223
177
am__quote = @am__quote@
229
183
build_cpu = @build_cpu@
230
184
build_os = @build_os@
231
185
build_vendor = @build_vendor@
 
186
builddir = @builddir@
232
187
datadir = @datadir@
233
188
datarootdir = @datarootdir@
234
189
docdir = @docdir@
247
202
libexecdir = @libexecdir@
248
203
localedir = @localedir@
249
204
localstatedir = @localstatedir@
 
205
lt_ECHO = @lt_ECHO@
250
206
mandir = @mandir@
251
207
mkdir_p = @mkdir_p@
252
208
oldincludedir = @oldincludedir@
256
212
psdir = @psdir@
257
213
sbindir = @sbindir@
258
214
sharedstatedir = @sharedstatedir@
 
215
srcdir = @srcdir@
259
216
sysconfdir = @sysconfdir@
260
217
target_alias = @target_alias@
 
218
top_build_prefix = @top_build_prefix@
 
219
top_builddir = @top_builddir@
 
220
top_srcdir = @top_srcdir@
261
221
@BUILD_MIXER_TRUE@SUBDIRS = mixer
262
222
all: all-recursive
263
223
 
264
224
.SUFFIXES:
265
 
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
225
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
266
226
        @for dep in $?; do \
267
227
          case '$(am__configure_deps)' in \
268
228
            *$$dep*) \
269
 
              cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
270
 
                && exit 0; \
 
229
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 
230
                && { if test -f $@; then exit 0; else break; fi; }; \
271
231
              exit 1;; \
272
232
          esac; \
273
233
        done; \
274
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  modules/Makefile'; \
275
 
        cd $(top_srcdir) && \
276
 
          $(AUTOMAKE) --foreign  modules/Makefile
 
234
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/Makefile'; \
 
235
        $(am__cd) $(top_srcdir) && \
 
236
          $(AUTOMAKE) --foreign modules/Makefile
277
237
.PRECIOUS: Makefile
278
238
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
279
239
        @case '$?' in \
287
247
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
288
248
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
289
249
 
290
 
$(top_srcdir)/configure:  $(am__configure_deps)
291
 
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
292
 
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
293
 
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
250
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
251
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
252
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
253
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
254
$(am__aclocal_m4_deps):
294
255
 
295
256
mostlyclean-libtool:
296
257
        -rm -f *.lo
298
259
clean-libtool:
299
260
        -rm -rf .libs _libs
300
261
 
301
 
distclean-libtool:
302
 
        -rm -f libtool
303
 
uninstall-info-am:
304
 
 
305
262
# This directory's subdirectories are mostly independent; you can cd
306
263
# into them and run `make' without going through this Makefile.
307
264
# To change the values of `make' variables: instead of editing Makefiles,
326
283
          else \
327
284
            local_target="$$target"; \
328
285
          fi; \
329
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
286
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
330
287
          || eval $$failcom; \
331
288
        done; \
332
289
        if test "$$dot_seen" = "no"; then \
333
290
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
334
291
        fi; test -z "$$fail"
335
292
 
336
 
mostlyclean-recursive clean-recursive distclean-recursive \
337
 
maintainer-clean-recursive:
 
293
$(RECURSIVE_CLEAN_TARGETS):
338
294
        @failcom='exit 1'; \
339
295
        for f in x $$MAKEFLAGS; do \
340
296
          case $$f in \
361
317
          else \
362
318
            local_target="$$target"; \
363
319
          fi; \
364
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
320
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
365
321
          || eval $$failcom; \
366
322
        done && test -z "$$fail"
367
323
tags-recursive:
368
324
        list='$(SUBDIRS)'; for subdir in $$list; do \
369
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
325
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
370
326
        done
371
327
ctags-recursive:
372
328
        list='$(SUBDIRS)'; for subdir in $$list; do \
373
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
329
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
374
330
        done
375
331
 
376
332
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
378
334
        unique=`for i in $$list; do \
379
335
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
380
336
          done | \
381
 
          $(AWK) '    { files[$$0] = 1; } \
382
 
               END { for (i in files) print i; }'`; \
 
337
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
338
              END { if (nonempty) { for (i in files) print i; }; }'`; \
383
339
        mkid -fID $$unique
384
340
tags: TAGS
385
341
 
386
342
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
387
343
                $(TAGS_FILES) $(LISP)
388
 
        tags=; \
 
344
        set x; \
389
345
        here=`pwd`; \
390
346
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
391
347
          include_option=--etags-include; \
397
353
        list='$(SUBDIRS)'; for subdir in $$list; do \
398
354
          if test "$$subdir" = .; then :; else \
399
355
            test ! -f $$subdir/TAGS || \
400
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
356
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
401
357
          fi; \
402
358
        done; \
403
359
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
404
360
        unique=`for i in $$list; do \
405
361
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
406
362
          done | \
407
 
          $(AWK) '    { files[$$0] = 1; } \
408
 
               END { for (i in files) print i; }'`; \
409
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
363
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
364
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
365
        shift; \
 
366
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
410
367
          test -n "$$unique" || unique=$$empty_fix; \
411
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
412
 
            $$tags $$unique; \
 
368
          if test $$# -gt 0; then \
 
369
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
370
              "$$@" $$unique; \
 
371
          else \
 
372
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
373
              $$unique; \
 
374
          fi; \
413
375
        fi
414
376
ctags: CTAGS
415
377
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
416
378
                $(TAGS_FILES) $(LISP)
417
 
        tags=; \
418
 
        here=`pwd`; \
419
379
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
420
380
        unique=`for i in $$list; do \
421
381
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
422
382
          done | \
423
 
          $(AWK) '    { files[$$0] = 1; } \
424
 
               END { for (i in files) print i; }'`; \
425
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
383
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
384
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
385
        test -z "$(CTAGS_ARGS)$$unique" \
426
386
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
427
 
             $$tags $$unique
 
387
             $$unique
428
388
 
429
389
GTAGS:
430
390
        here=`$(am__cd) $(top_builddir) && pwd` \
431
 
          && cd $(top_srcdir) \
432
 
          && gtags -i $(GTAGS_ARGS) $$here
 
391
          && $(am__cd) $(top_srcdir) \
 
392
          && gtags -i $(GTAGS_ARGS) "$$here"
433
393
 
434
394
distclean-tags:
435
395
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
436
396
 
437
397
distdir: $(DISTFILES)
438
 
        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
439
 
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
440
 
        list='$(DISTFILES)'; for file in $$list; do \
441
 
          case $$file in \
442
 
            $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
443
 
            $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
444
 
          esac; \
 
398
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
399
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
400
        list='$(DISTFILES)'; \
 
401
          dist_files=`for file in $$list; do echo $$file; done | \
 
402
          sed -e "s|^$$srcdirstrip/||;t" \
 
403
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
 
404
        case $$dist_files in \
 
405
          */*) $(MKDIR_P) `echo "$$dist_files" | \
 
406
                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
 
407
                           sort -u` ;; \
 
408
        esac; \
 
409
        for file in $$dist_files; do \
445
410
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
446
 
          dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
447
 
          if test "$$dir" != "$$file" && test "$$dir" != "."; then \
448
 
            dir="/$$dir"; \
449
 
            $(mkdir_p) "$(distdir)$$dir"; \
450
 
          else \
451
 
            dir=''; \
452
 
          fi; \
453
411
          if test -d $$d/$$file; then \
 
412
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
413
            if test -d "$(distdir)/$$file"; then \
 
414
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
415
            fi; \
454
416
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
455
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
417
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
418
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
456
419
            fi; \
457
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
420
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
458
421
          else \
459
 
            test -f $(distdir)/$$file \
460
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
422
            test -f "$(distdir)/$$file" \
 
423
            || cp -p $$d/$$file "$(distdir)/$$file" \
461
424
            || exit 1; \
462
425
          fi; \
463
426
        done
464
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
427
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
465
428
          if test "$$subdir" = .; then :; else \
466
429
            test -d "$(distdir)/$$subdir" \
467
 
            || $(mkdir_p) "$(distdir)/$$subdir" \
 
430
            || $(MKDIR_P) "$(distdir)/$$subdir" \
468
431
            || exit 1; \
469
 
            distdir=`$(am__cd) $(distdir) && pwd`; \
470
 
            top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
471
 
            (cd $$subdir && \
 
432
          fi; \
 
433
        done
 
434
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
435
          if test "$$subdir" = .; then :; else \
 
436
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
437
            $(am__relativize); \
 
438
            new_distdir=$$reldir; \
 
439
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
440
            $(am__relativize); \
 
441
            new_top_distdir=$$reldir; \
 
442
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
443
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
444
            ($(am__cd) $$subdir && \
472
445
              $(MAKE) $(AM_MAKEFLAGS) \
473
 
                top_distdir="$$top_distdir" \
474
 
                distdir="$$distdir/$$subdir" \
 
446
                top_distdir="$$new_top_distdir" \
 
447
                distdir="$$new_distdir" \
 
448
                am__remove_distdir=: \
 
449
                am__skip_length_check=: \
 
450
                am__skip_mode_fix=: \
475
451
                distdir) \
476
452
              || exit 1; \
477
453
          fi; \
501
477
 
502
478
distclean-generic:
503
479
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
480
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
504
481
 
505
482
maintainer-clean-generic:
506
483
        @echo "This command is intended for maintainers to use"
511
488
 
512
489
distclean: distclean-recursive
513
490
        -rm -f Makefile
514
 
distclean-am: clean-am distclean-generic distclean-libtool \
515
 
        distclean-tags
 
491
distclean-am: clean-am distclean-generic distclean-tags
516
492
 
517
493
dvi: dvi-recursive
518
494
 
520
496
 
521
497
html: html-recursive
522
498
 
 
499
html-am:
 
500
 
523
501
info: info-recursive
524
502
 
525
503
info-am:
526
504
 
527
505
install-data-am:
528
506
 
 
507
install-dvi: install-dvi-recursive
 
508
 
 
509
install-dvi-am:
 
510
 
529
511
install-exec-am:
530
512
 
 
513
install-html: install-html-recursive
 
514
 
 
515
install-html-am:
 
516
 
531
517
install-info: install-info-recursive
532
518
 
 
519
install-info-am:
 
520
 
533
521
install-man:
534
522
 
 
523
install-pdf: install-pdf-recursive
 
524
 
 
525
install-pdf-am:
 
526
 
 
527
install-ps: install-ps-recursive
 
528
 
 
529
install-ps-am:
 
530
 
535
531
installcheck-am:
536
532
 
537
533
maintainer-clean: maintainer-clean-recursive
550
546
 
551
547
ps-am:
552
548
 
553
 
uninstall-am: uninstall-info-am
554
 
 
555
 
uninstall-info: uninstall-info-recursive
556
 
 
557
 
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
558
 
        clean clean-generic clean-libtool clean-recursive ctags \
559
 
        ctags-recursive distclean distclean-generic distclean-libtool \
560
 
        distclean-recursive distclean-tags distdir dvi dvi-am html \
 
549
uninstall-am:
 
550
 
 
551
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
 
552
        install-am install-strip tags-recursive
 
553
 
 
554
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
 
555
        all all-am check check-am clean clean-generic clean-libtool \
 
556
        ctags ctags-recursive distclean distclean-generic \
 
557
        distclean-libtool distclean-tags distdir dvi dvi-am html \
561
558
        html-am info info-am install install-am install-data \
562
 
        install-data-am install-exec install-exec-am install-info \
563
 
        install-info-am install-man install-strip installcheck \
 
559
        install-data-am install-dvi install-dvi-am install-exec \
 
560
        install-exec-am install-html install-html-am install-info \
 
561
        install-info-am install-man install-pdf install-pdf-am \
 
562
        install-ps install-ps-am install-strip installcheck \
564
563
        installcheck-am installdirs installdirs-am maintainer-clean \
565
 
        maintainer-clean-generic maintainer-clean-recursive \
566
 
        mostlyclean mostlyclean-generic mostlyclean-libtool \
567
 
        mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
568
 
        uninstall uninstall-am uninstall-info-am
 
564
        maintainer-clean-generic mostlyclean mostlyclean-generic \
 
565
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
 
566
        uninstall uninstall-am
 
567
 
569
568
 
570
569
# Tell versions [3.59,3.63) of GNU make to not export all variables.
571
570
# Otherwise a system limit (for SysV at least) may be exceeded.