~ubuntu-branches/ubuntu/quantal/maildir-utils/quantal

« back to all changes in this revision

Viewing changes to src/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2010-02-28 19:30:03 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100228193003-95az0jwl5e2r31vf
Tags: 0.7-1
* Imported Upstream version 0.7
* disable upstream included make-index-silent patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
@SET_MAKE@
17
17
 
 
18
 
18
19
VPATH = @srcdir@
19
20
pkgdatadir = $(datadir)/@PACKAGE@
20
21
pkgincludedir = $(includedir)/@PACKAGE@
34
35
POST_UNINSTALL = :
35
36
build_triplet = @build@
36
37
host_triplet = @host@
 
38
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
 
39
        $(top_srcdir)/gtest.mk
 
40
@HAVE_GTEST_TRUE@am__append_1 = tests
37
41
bin_PROGRAMS = mu$(EXEEXT)
38
42
subdir = src
39
 
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
40
43
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
41
44
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
42
45
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
45
48
CONFIG_HEADER = $(top_builddir)/config.h
46
49
CONFIG_CLEAN_FILES =
47
50
CONFIG_CLEAN_VPATH_FILES =
 
51
LTLIBRARIES = $(noinst_LTLIBRARIES)
 
52
am__DEPENDENCIES_1 =
 
53
libmu_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
 
54
        $(am__DEPENDENCIES_1)
 
55
am_libmu_la_OBJECTS = mu-cmd.lo mu-cmd-find.lo mu-cmd-index.lo \
 
56
        mu-config.lo mu-index.lo mu-log.lo mu-maildir.lo \
 
57
        mu-msg-fields.lo mu-msg-flags.lo mu-msg-gmime.lo \
 
58
        mu-msg-iter-xapian.lo mu-msg-str.lo mu-query-xapian.lo \
 
59
        mu-store-xapian.lo mu-util-xapian.lo mu-util.lo
 
60
libmu_la_OBJECTS = $(am_libmu_la_OBJECTS)
 
61
AM_V_lt = $(am__v_lt_$(V))
 
62
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
 
63
am__v_lt_0 = --silent
48
64
am__installdirs = "$(DESTDIR)$(bindir)"
49
65
PROGRAMS = $(bin_PROGRAMS)
50
 
am_mu_OBJECTS = mu-cmd.$(OBJEXT) mu-config.$(OBJEXT) \
51
 
        mu-index.$(OBJEXT) mu-log.$(OBJEXT) mu-maildir.$(OBJEXT) \
52
 
        mu-msg-fields.$(OBJEXT) mu-msg-flags.$(OBJEXT) \
53
 
        mu-msg-gmime.$(OBJEXT) mu-msg-str.$(OBJEXT) \
54
 
        mu-msg-xapian.$(OBJEXT) mu-query-xapian.$(OBJEXT) \
55
 
        mu-store-xapian.$(OBJEXT) mu-util.$(OBJEXT) mu.$(OBJEXT)
 
66
am_mu_OBJECTS = mu.$(OBJEXT)
56
67
mu_OBJECTS = $(am_mu_OBJECTS)
57
 
am__DEPENDENCIES_1 =
58
 
mu_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
59
 
        $(am__DEPENDENCIES_1)
 
68
mu_DEPENDENCIES = libmu.la
60
69
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
61
70
depcomp = $(SHELL) $(top_srcdir)/depcomp
62
71
am__depfiles_maybe = depfiles
63
72
am__mv = mv -f
64
73
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
65
74
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
66
 
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
67
 
        --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
68
 
        $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
75
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
76
        $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
 
77
        $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
78
        $(AM_CFLAGS) $(CFLAGS)
 
79
AM_V_CC = $(am__v_CC_$(V))
 
80
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
 
81
am__v_CC_0 = @echo "  CC    " $@;
 
82
AM_V_at = $(am__v_at_$(V))
 
83
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
 
84
am__v_at_0 = @
69
85
CCLD = $(CC)
70
 
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
71
 
        --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
72
 
        $(LDFLAGS) -o $@
 
86
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
87
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
88
        $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
89
AM_V_CCLD = $(am__v_CCLD_$(V))
 
90
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
 
91
am__v_CCLD_0 = @echo "  CCLD  " $@;
73
92
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
74
93
        $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
75
 
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
76
 
        --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
77
 
        $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
 
94
LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
 
95
        $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
 
96
        $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
97
        $(AM_CXXFLAGS) $(CXXFLAGS)
 
98
AM_V_CXX = $(am__v_CXX_$(V))
 
99
am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY))
 
100
am__v_CXX_0 = @echo "  CXX   " $@;
78
101
CXXLD = $(CXX)
79
 
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
80
 
        --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
81
 
        $(LDFLAGS) -o $@
82
 
SOURCES = $(mu_SOURCES)
83
 
DIST_SOURCES = $(mu_SOURCES)
 
102
CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
 
103
        $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
 
104
        $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
105
AM_V_CXXLD = $(am__v_CXXLD_$(V))
 
106
am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY))
 
107
am__v_CXXLD_0 = @echo "  CXXLD " $@;
 
108
AM_V_GEN = $(am__v_GEN_$(V))
 
109
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
 
110
am__v_GEN_0 = @echo "  GEN   " $@;
 
111
SOURCES = $(libmu_la_SOURCES) $(mu_SOURCES)
 
112
DIST_SOURCES = $(libmu_la_SOURCES) $(mu_SOURCES)
 
113
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
114
        html-recursive info-recursive install-data-recursive \
 
115
        install-dvi-recursive install-exec-recursive \
 
116
        install-html-recursive install-info-recursive \
 
117
        install-pdf-recursive install-ps-recursive install-recursive \
 
118
        installcheck-recursive installdirs-recursive pdf-recursive \
 
119
        ps-recursive uninstall-recursive
 
120
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
 
121
  distclean-recursive maintainer-clean-recursive
 
122
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
123
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
124
        distdir
84
125
ETAGS = etags
85
126
CTAGS = ctags
 
127
DIST_SUBDIRS = . tests
86
128
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
129
am__relativize = \
 
130
  dir0=`pwd`; \
 
131
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
132
  sed_rest='s,^[^/]*/*,,'; \
 
133
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
134
  sed_butlast='s,/*[^/]*$$,,'; \
 
135
  while test -n "$$dir1"; do \
 
136
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
137
    if test "$$first" != "."; then \
 
138
      if test "$$first" = ".."; then \
 
139
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
140
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
141
      else \
 
142
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
143
        if test "$$first2" = "$$first"; then \
 
144
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
145
        else \
 
146
          dir2="../$$dir2"; \
 
147
        fi; \
 
148
        dir0="$$dir0"/"$$first"; \
 
149
      fi; \
 
150
    fi; \
 
151
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
152
  done; \
 
153
  reldir="$$dir2"
87
154
ACLOCAL = @ACLOCAL@
88
155
AMTAR = @AMTAR@
 
156
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
89
157
AR = @AR@
90
158
AUTOCONF = @AUTOCONF@
91
159
AUTOHEADER = @AUTOHEADER@
146
214
PACKAGE_VERSION = @PACKAGE_VERSION@
147
215
PATH_SEPARATOR = @PATH_SEPARATOR@
148
216
PKG_CONFIG = @PKG_CONFIG@
 
217
PMCCABE = @PMCCABE@
149
218
RANLIB = @RANLIB@
150
219
SED = @SED@
151
220
SET_MAKE = @SET_MAKE@
179
248
docdir = @docdir@
180
249
dvidir = @dvidir@
181
250
exec_prefix = @exec_prefix@
 
251
g_test_CFLAGS = @g_test_CFLAGS@
 
252
g_test_LIBS = @g_test_LIBS@
182
253
host = @host@
183
254
host_alias = @host_alias@
184
255
host_cpu = @host_cpu@
208
279
top_build_prefix = @top_build_prefix@
209
280
top_builddir = @top_builddir@
210
281
top_srcdir = @top_srcdir@
 
282
TEST_PROGS = 
 
283
 
 
284
# enforce compiling this dir first before decending into tests/
 
285
SUBDIRS = . $(am__append_1)
211
286
INCLUDES = $(XAPIAN_CXXFLAGS) $(GMIME_CFLAGS) $(GLIB_CFLAGS)
 
287
 
 
288
# don't use -Werror, as it might break on other compilers
 
289
# use -Wno-unused-parameters, because some callbacks may not
 
290
# really need all the params they get
 
291
AM_CFLAGS = -Wall -Wextra -Wno-unused-parameter
 
292
AM_CXXFLAGS = -Wall -Wextra -Wno-unused-parameter
 
293
noinst_LTLIBRARIES = \
 
294
        libmu.la
 
295
 
 
296
 
 
297
# note, mu.cc is only '.cc' and not '.c' because libmu must explicitly
 
298
# be linked as c++, not c.
212
299
mu_SOURCES = \
213
 
        mu-cmd.h                \
214
 
        mu-cmd.c                \
215
 
        mu-config.h             \
216
 
        mu-config.c             \
217
 
        mu-index.c              \
218
 
        mu-index.h              \
219
 
        mu-log.c                \
220
 
        mu-log.h                \
221
 
        mu-maildir.c            \
222
 
        mu-maildir.h            \
223
 
        mu-msg-fields.c         \
224
 
        mu-msg-fields.h         \
225
 
        mu-msg-flags.c          \
226
 
        mu-msg-flags.h          \
227
 
        mu-msg-gmime.c          \
228
 
        mu-msg-gmime.h          \
229
 
        mu-msg-str.c            \
230
 
        mu-msg-str.h            \
231
 
        mu-msg-xapian-priv.hh   \
232
 
        mu-msg-xapian.cc        \
233
 
        mu-msg-xapian.h         \
234
 
        mu-msg.h                \
235
 
        mu-query-xapian.cc      \
236
 
        mu-query-xapian.h       \
237
 
        mu-result.h             \
238
 
        mu-store-xapian.cc      \
239
 
        mu-store-xapian.h       \
240
 
        mu-util.h               \
241
 
        mu-util.c               \
242
 
        mu.c
 
300
        mu.cc
243
301
 
244
302
mu_LDADD = \
245
 
        $(XAPIAN_LIBS)          \
246
 
        $(GMIME_LIBS)           \
 
303
        libmu.la
 
304
 
 
305
libmu_la_SOURCES = \
 
306
        mu-cmd.c                        \
 
307
        mu-cmd.h                        \
 
308
        mu-cmd-find.h                   \
 
309
        mu-cmd-find.c                   \
 
310
        mu-cmd-index.h                  \
 
311
        mu-cmd-index.c                  \
 
312
        mu-config.c                     \
 
313
        mu-config.h                     \
 
314
        mu-index.c                      \
 
315
        mu-index.h                      \
 
316
        mu-log.c                        \
 
317
        mu-log.h                        \
 
318
        mu-maildir.c                    \
 
319
        mu-maildir.h                    \
 
320
        mu-msg-fields.c                 \
 
321
        mu-msg-fields.h                 \
 
322
        mu-msg-flags.c                  \
 
323
        mu-msg-flags.h                  \
 
324
        mu-msg-gmime.c                  \
 
325
        mu-msg-gmime.h                  \
 
326
        mu-msg-iter-xapian-priv.hh      \
 
327
        mu-msg-iter-xapian.cc           \
 
328
        mu-msg-iter-xapian.h            \
 
329
        mu-msg-str.c                    \
 
330
        mu-msg-str.h                    \
 
331
        mu-msg.h                        \
 
332
        mu-query-xapian.cc              \
 
333
        mu-query-xapian.h               \
 
334
        mu-result.h                     \
 
335
        mu-store-xapian.cc              \
 
336
        mu-store-xapian.h               \
 
337
        mu-util-xapian.cc               \
 
338
        mu-util-xapian.h                \
 
339
        mu-util.c                       \
 
340
        mu-util.h
 
341
 
 
342
libmu_la_LIBADD = \
 
343
        $(XAPIAN_LIBS)                  \
 
344
        $(GMIME_LIBS)                   \
247
345
        $(GLIB_LIBS)
248
346
 
249
 
all: all-am
 
347
all: all-recursive
250
348
 
251
349
.SUFFIXES:
252
350
.SUFFIXES: .c .cc .lo .o .obj
253
 
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
351
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/gtest.mk $(am__configure_deps)
254
352
        @for dep in $?; do \
255
353
          case '$(am__configure_deps)' in \
256
354
            *$$dep*) \
280
378
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
281
379
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
282
380
$(am__aclocal_m4_deps):
 
381
 
 
382
clean-noinstLTLIBRARIES:
 
383
        -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
 
384
        @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
 
385
          dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
 
386
          test "$$dir" != "$$p" || dir=.; \
 
387
          echo "rm -f \"$${dir}/so_locations\""; \
 
388
          rm -f "$${dir}/so_locations"; \
 
389
        done
 
390
libmu.la: $(libmu_la_OBJECTS) $(libmu_la_DEPENDENCIES) 
 
391
        $(AM_V_CXXLD)$(CXXLINK)  $(libmu_la_OBJECTS) $(libmu_la_LIBADD) $(LIBS)
283
392
install-binPROGRAMS: $(bin_PROGRAMS)
284
393
        @$(NORMAL_INSTALL)
285
394
        test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
325
434
        rm -f $$list
326
435
mu$(EXEEXT): $(mu_OBJECTS) $(mu_DEPENDENCIES) 
327
436
        @rm -f mu$(EXEEXT)
328
 
        $(CXXLINK) $(mu_OBJECTS) $(mu_LDADD) $(LIBS)
 
437
        $(AM_V_CXXLD)$(CXXLINK) $(mu_OBJECTS) $(mu_LDADD) $(LIBS)
329
438
 
330
439
mostlyclean-compile:
331
440
        -rm -f *.$(OBJEXT)
333
442
distclean-compile:
334
443
        -rm -f *.tab.c
335
444
 
336
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-cmd.Po@am__quote@
337
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-config.Po@am__quote@
338
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-index.Po@am__quote@
339
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-log.Po@am__quote@
340
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-maildir.Po@am__quote@
341
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-fields.Po@am__quote@
342
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-flags.Po@am__quote@
343
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-gmime.Po@am__quote@
344
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-str.Po@am__quote@
345
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-xapian.Po@am__quote@
346
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-query-xapian.Po@am__quote@
347
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-store-xapian.Po@am__quote@
348
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-util.Po@am__quote@
 
445
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-cmd-find.Plo@am__quote@
 
446
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-cmd-index.Plo@am__quote@
 
447
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-cmd.Plo@am__quote@
 
448
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-config.Plo@am__quote@
 
449
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-index.Plo@am__quote@
 
450
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-log.Plo@am__quote@
 
451
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-maildir.Plo@am__quote@
 
452
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-fields.Plo@am__quote@
 
453
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-flags.Plo@am__quote@
 
454
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-gmime.Plo@am__quote@
 
455
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-iter-xapian.Plo@am__quote@
 
456
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-msg-str.Plo@am__quote@
 
457
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-query-xapian.Plo@am__quote@
 
458
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-store-xapian.Plo@am__quote@
 
459
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-util-xapian.Plo@am__quote@
 
460
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu-util.Plo@am__quote@
349
461
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mu.Po@am__quote@
350
462
 
351
463
.c.o:
352
 
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
353
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
464
@am__fastdepCC_TRUE@    $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
465
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
466
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
354
467
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
355
468
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
356
469
@am__fastdepCC_FALSE@   $(COMPILE) -c $<
357
470
 
358
471
.c.obj:
359
 
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
360
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
472
@am__fastdepCC_TRUE@    $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
 
473
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
474
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
361
475
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
362
476
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
363
477
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
364
478
 
365
479
.c.lo:
366
 
@am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
367
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
480
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
481
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
482
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
368
483
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
369
484
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
370
485
@am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
371
486
 
372
487
.cc.o:
373
 
@am__fastdepCXX_TRUE@   $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
374
 
@am__fastdepCXX_TRUE@   $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
488
@am__fastdepCXX_TRUE@   $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
489
@am__fastdepCXX_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
490
@am__fastdepCXX_FALSE@  $(AM_V_CXX) @AM_BACKSLASH@
375
491
@AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
376
492
@AMDEP_TRUE@@am__fastdepCXX_FALSE@      DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
377
493
@am__fastdepCXX_FALSE@  $(CXXCOMPILE) -c -o $@ $<
378
494
 
379
495
.cc.obj:
380
 
@am__fastdepCXX_TRUE@   $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
381
 
@am__fastdepCXX_TRUE@   $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
496
@am__fastdepCXX_TRUE@   $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
 
497
@am__fastdepCXX_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
498
@am__fastdepCXX_FALSE@  $(AM_V_CXX) @AM_BACKSLASH@
382
499
@AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
383
500
@AMDEP_TRUE@@am__fastdepCXX_FALSE@      DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
384
501
@am__fastdepCXX_FALSE@  $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
385
502
 
386
503
.cc.lo:
387
 
@am__fastdepCXX_TRUE@   $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
388
 
@am__fastdepCXX_TRUE@   $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
504
@am__fastdepCXX_TRUE@   $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
505
@am__fastdepCXX_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
506
@am__fastdepCXX_FALSE@  $(AM_V_CXX) @AM_BACKSLASH@
389
507
@AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
390
508
@AMDEP_TRUE@@am__fastdepCXX_FALSE@      DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
391
509
@am__fastdepCXX_FALSE@  $(LTCXXCOMPILE) -c -o $@ $<
396
514
clean-libtool:
397
515
        -rm -rf .libs _libs
398
516
 
 
517
# This directory's subdirectories are mostly independent; you can cd
 
518
# into them and run `make' without going through this Makefile.
 
519
# To change the values of `make' variables: instead of editing Makefiles,
 
520
# (1) if the variable is set in `config.status', edit `config.status'
 
521
#     (which will cause the Makefiles to be regenerated when you run `make');
 
522
# (2) otherwise, pass the desired values on the `make' command line.
 
523
$(RECURSIVE_TARGETS):
 
524
        @failcom='exit 1'; \
 
525
        for f in x $$MAKEFLAGS; do \
 
526
          case $$f in \
 
527
            *=* | --[!k]*);; \
 
528
            *k*) failcom='fail=yes';; \
 
529
          esac; \
 
530
        done; \
 
531
        dot_seen=no; \
 
532
        target=`echo $@ | sed s/-recursive//`; \
 
533
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
534
          echo "Making $$target in $$subdir"; \
 
535
          if test "$$subdir" = "."; then \
 
536
            dot_seen=yes; \
 
537
            local_target="$$target-am"; \
 
538
          else \
 
539
            local_target="$$target"; \
 
540
          fi; \
 
541
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
542
          || eval $$failcom; \
 
543
        done; \
 
544
        if test "$$dot_seen" = "no"; then \
 
545
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
546
        fi; test -z "$$fail"
 
547
 
 
548
$(RECURSIVE_CLEAN_TARGETS):
 
549
        @failcom='exit 1'; \
 
550
        for f in x $$MAKEFLAGS; do \
 
551
          case $$f in \
 
552
            *=* | --[!k]*);; \
 
553
            *k*) failcom='fail=yes';; \
 
554
          esac; \
 
555
        done; \
 
556
        dot_seen=no; \
 
557
        case "$@" in \
 
558
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
559
          *) list='$(SUBDIRS)' ;; \
 
560
        esac; \
 
561
        rev=''; for subdir in $$list; do \
 
562
          if test "$$subdir" = "."; then :; else \
 
563
            rev="$$subdir $$rev"; \
 
564
          fi; \
 
565
        done; \
 
566
        rev="$$rev ."; \
 
567
        target=`echo $@ | sed s/-recursive//`; \
 
568
        for subdir in $$rev; do \
 
569
          echo "Making $$target in $$subdir"; \
 
570
          if test "$$subdir" = "."; then \
 
571
            local_target="$$target-am"; \
 
572
          else \
 
573
            local_target="$$target"; \
 
574
          fi; \
 
575
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
576
          || eval $$failcom; \
 
577
        done && test -z "$$fail"
 
578
tags-recursive:
 
579
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
580
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
581
        done
 
582
ctags-recursive:
 
583
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
584
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
585
        done
 
586
 
399
587
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
400
588
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
401
589
        unique=`for i in $$list; do \
406
594
        mkid -fID $$unique
407
595
tags: TAGS
408
596
 
409
 
TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
597
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
410
598
                $(TAGS_FILES) $(LISP)
411
599
        set x; \
412
600
        here=`pwd`; \
 
601
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
602
          include_option=--etags-include; \
 
603
          empty_fix=.; \
 
604
        else \
 
605
          include_option=--include; \
 
606
          empty_fix=; \
 
607
        fi; \
 
608
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
609
          if test "$$subdir" = .; then :; else \
 
610
            test ! -f $$subdir/TAGS || \
 
611
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 
612
          fi; \
 
613
        done; \
413
614
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
414
615
        unique=`for i in $$list; do \
415
616
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
428
629
          fi; \
429
630
        fi
430
631
ctags: CTAGS
431
 
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
 
632
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
432
633
                $(TAGS_FILES) $(LISP)
433
634
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
434
635
        unique=`for i in $$list; do \
478
679
            || exit 1; \
479
680
          fi; \
480
681
        done
 
682
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
683
          if test "$$subdir" = .; then :; else \
 
684
            test -d "$(distdir)/$$subdir" \
 
685
            || $(MKDIR_P) "$(distdir)/$$subdir" \
 
686
            || exit 1; \
 
687
          fi; \
 
688
        done
 
689
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
690
          if test "$$subdir" = .; then :; else \
 
691
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
692
            $(am__relativize); \
 
693
            new_distdir=$$reldir; \
 
694
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
695
            $(am__relativize); \
 
696
            new_top_distdir=$$reldir; \
 
697
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
698
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
699
            ($(am__cd) $$subdir && \
 
700
              $(MAKE) $(AM_MAKEFLAGS) \
 
701
                top_distdir="$$new_top_distdir" \
 
702
                distdir="$$new_distdir" \
 
703
                am__remove_distdir=: \
 
704
                am__skip_length_check=: \
 
705
                am__skip_mode_fix=: \
 
706
                distdir) \
 
707
              || exit 1; \
 
708
          fi; \
 
709
        done
481
710
check-am: all-am
482
 
check: check-am
483
 
all-am: Makefile $(PROGRAMS)
484
 
installdirs:
 
711
check: check-recursive
 
712
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS)
 
713
installdirs: installdirs-recursive
 
714
installdirs-am:
485
715
        for dir in "$(DESTDIR)$(bindir)"; do \
486
716
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
487
717
        done
488
 
install: install-am
489
 
install-exec: install-exec-am
490
 
install-data: install-data-am
491
 
uninstall: uninstall-am
 
718
install: install-recursive
 
719
install-exec: install-exec-recursive
 
720
install-data: install-data-recursive
 
721
uninstall: uninstall-recursive
492
722
 
493
723
install-am: all-am
494
724
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
495
725
 
496
 
installcheck: installcheck-am
 
726
installcheck: installcheck-recursive
497
727
install-strip:
498
728
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
499
729
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
510
740
maintainer-clean-generic:
511
741
        @echo "This command is intended for maintainers to use"
512
742
        @echo "it deletes files that may require special tools to rebuild."
513
 
clean: clean-am
514
 
 
515
 
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
516
 
 
517
 
distclean: distclean-am
 
743
clean: clean-recursive
 
744
 
 
745
clean-am: clean-binPROGRAMS clean-generic clean-libtool \
 
746
        clean-noinstLTLIBRARIES mostlyclean-am
 
747
 
 
748
distclean: distclean-recursive
518
749
        -rm -rf ./$(DEPDIR)
519
750
        -rm -f Makefile
520
751
distclean-am: clean-am distclean-compile distclean-generic \
521
752
        distclean-tags
522
753
 
523
 
dvi: dvi-am
 
754
dvi: dvi-recursive
524
755
 
525
756
dvi-am:
526
757
 
527
 
html: html-am
 
758
html: html-recursive
528
759
 
529
760
html-am:
530
761
 
531
 
info: info-am
 
762
info: info-recursive
532
763
 
533
764
info-am:
534
765
 
535
766
install-data-am:
536
767
 
537
 
install-dvi: install-dvi-am
 
768
install-dvi: install-dvi-recursive
538
769
 
539
770
install-dvi-am:
540
771
 
541
772
install-exec-am: install-binPROGRAMS
542
773
 
543
 
install-html: install-html-am
 
774
install-html: install-html-recursive
544
775
 
545
776
install-html-am:
546
777
 
547
 
install-info: install-info-am
 
778
install-info: install-info-recursive
548
779
 
549
780
install-info-am:
550
781
 
551
782
install-man:
552
783
 
553
 
install-pdf: install-pdf-am
 
784
install-pdf: install-pdf-recursive
554
785
 
555
786
install-pdf-am:
556
787
 
557
 
install-ps: install-ps-am
 
788
install-ps: install-ps-recursive
558
789
 
559
790
install-ps-am:
560
791
 
561
792
installcheck-am:
562
793
 
563
 
maintainer-clean: maintainer-clean-am
 
794
maintainer-clean: maintainer-clean-recursive
564
795
        -rm -rf ./$(DEPDIR)
565
796
        -rm -f Makefile
566
797
maintainer-clean-am: distclean-am maintainer-clean-generic
567
798
 
568
 
mostlyclean: mostlyclean-am
 
799
mostlyclean: mostlyclean-recursive
569
800
 
570
801
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
571
802
        mostlyclean-libtool
572
803
 
573
 
pdf: pdf-am
 
804
pdf: pdf-recursive
574
805
 
575
806
pdf-am:
576
807
 
577
 
ps: ps-am
 
808
ps: ps-recursive
578
809
 
579
810
ps-am:
580
811
 
581
812
uninstall-am: uninstall-binPROGRAMS
582
813
 
583
 
.MAKE: install-am install-strip
 
814
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
 
815
        install-am install-strip tags-recursive
584
816
 
585
 
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
586
 
        clean-generic clean-libtool ctags distclean distclean-compile \
587
 
        distclean-generic distclean-libtool distclean-tags distdir dvi \
588
 
        dvi-am html html-am info info-am install install-am \
589
 
        install-binPROGRAMS install-data install-data-am install-dvi \
590
 
        install-dvi-am install-exec install-exec-am install-html \
591
 
        install-html-am install-info install-info-am install-man \
592
 
        install-pdf install-pdf-am install-ps install-ps-am \
593
 
        install-strip installcheck installcheck-am installdirs \
 
817
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
 
818
        all all-am check check-am clean clean-binPROGRAMS \
 
819
        clean-generic clean-libtool clean-noinstLTLIBRARIES ctags \
 
820
        ctags-recursive distclean distclean-compile distclean-generic \
 
821
        distclean-libtool distclean-tags distdir dvi dvi-am html \
 
822
        html-am info info-am install install-am install-binPROGRAMS \
 
823
        install-data install-data-am install-dvi install-dvi-am \
 
824
        install-exec install-exec-am install-html install-html-am \
 
825
        install-info install-info-am install-man install-pdf \
 
826
        install-pdf-am install-ps install-ps-am install-strip \
 
827
        installcheck installcheck-am installdirs installdirs-am \
594
828
        maintainer-clean maintainer-clean-generic mostlyclean \
595
829
        mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
596
 
        pdf pdf-am ps ps-am tags uninstall uninstall-am \
 
830
        pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
597
831
        uninstall-binPROGRAMS
598
832
 
599
833
 
 
834
test: all $(TEST_PROGS)
 
835
         @test -z "$(TEST_PROGS)" || gtester --verbose $(TEST_PROGS) || exit $$?; \
 
836
         test -z "$(SUBDIRS)" || \
 
837
                for subdir in $(SUBDIRS); do \
 
838
                        test "$$subdir" = "." || \
 
839
                (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$? ; \
 
840
                done
 
841
.PHONY: test
 
842
 
600
843
# Tell versions [3.59,3.63) of GNU make to not export all variables.
601
844
# Otherwise a system limit (for SysV at least) may be exceeded.
602
845
.NOEXPORT: