~ubuntu-branches/ubuntu/oneiric/squid3/oneiric-security

« back to all changes in this revision

Viewing changes to helpers/ntlm_auth/smb_lm/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Mahyuddin Susanto
  • Date: 2011-02-15 18:46:13 UTC
  • mfrom: (21.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110215184613-1u3dh5sz4i055flk
Tags: 3.1.10-1ubuntu1
* Merge from debian unstable. (LP: #719283)  Remaining changes:
  - debian/patches/18-fix-ftbfs-binutils-gold.dpatch: Add library linker into
    LIBS instead to LDFLAGS to fixing FTBFS binutils-gold.
* Drop Ubuntu configuration for ufw which landed in Debian and sync it: 
  - debian/squid3.ufw.profile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10.1 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1 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, 2006, 2007, 2008  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.
16
17
 
17
18
VPATH = @srcdir@
18
19
pkgdatadir = $(datadir)/@PACKAGE@
 
20
pkgincludedir = $(includedir)/@PACKAGE@
19
21
pkglibdir = $(libdir)/@PACKAGE@
20
 
pkgincludedir = $(includedir)/@PACKAGE@
 
22
pkglibexecdir = $(libexecdir)/@PACKAGE@
21
23
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
22
24
install_sh_DATA = $(install_sh) -c -m 644
23
25
install_sh_PROGRAM = $(install_sh) -c
36
38
        $(top_srcdir)/src/Common.am
37
39
check_PROGRAMS =
38
40
TESTS =
 
41
@USE_LOADABLE_MODULES_TRUE@am__append_1 = $(INCLTDL)
39
42
libexec_PROGRAMS = ntlm_smb_lm_auth$(EXEEXT)
40
43
subdir = helpers/ntlm_auth/smb_lm
41
44
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
42
45
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
43
 
        $(top_srcdir)/configure.in
 
46
        $(top_srcdir)/configure.ac
44
47
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
45
48
        $(ACLOCAL_M4)
46
49
mkinstalldirs = $(install_sh) -d
47
50
CONFIG_HEADER = $(top_builddir)/include/autoconf.h
48
51
CONFIG_CLEAN_FILES =
 
52
CONFIG_CLEAN_VPATH_FILES =
49
53
am__installdirs = "$(DESTDIR)$(libexecdir)"
50
 
libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
51
54
PROGRAMS = $(libexec_PROGRAMS)
52
55
am_ntlm_smb_lm_auth_OBJECTS = libntlmssp.$(OBJEXT) \
53
56
        ntlm_smb_lm_auth.$(OBJEXT)
60
63
DEFAULT_INCLUDES = 
61
64
depcomp = $(SHELL) $(top_srcdir)/cfgaux/depcomp
62
65
am__depfiles_maybe = depfiles
 
66
am__mv = mv -f
63
67
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
64
68
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
65
69
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
80
84
        ps-recursive uninstall-recursive
81
85
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
82
86
  distclean-recursive maintainer-clean-recursive
 
87
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
88
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
89
        distdir
83
90
ETAGS = etags
84
91
CTAGS = ctags
 
92
am__tty_colors = \
 
93
red=; grn=; lgn=; blu=; std=
85
94
DIST_SUBDIRS = $(SUBDIRS)
86
95
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
96
am__relativize = \
 
97
  dir0=`pwd`; \
 
98
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
99
  sed_rest='s,^[^/]*/*,,'; \
 
100
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
101
  sed_butlast='s,/*[^/]*$$,,'; \
 
102
  while test -n "$$dir1"; do \
 
103
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
104
    if test "$$first" != "."; then \
 
105
      if test "$$first" = ".."; then \
 
106
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
107
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
108
      else \
 
109
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
110
        if test "$$first2" = "$$first"; then \
 
111
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
112
        else \
 
113
          dir2="../$$dir2"; \
 
114
        fi; \
 
115
        dir0="$$dir0"/"$$first"; \
 
116
      fi; \
 
117
    fi; \
 
118
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
119
  done; \
 
120
  reldir="$$dir2"
87
121
ACLOCAL = @ACLOCAL@
88
122
ADAPTATION_LIBS = @ADAPTATION_LIBS@
89
123
ALLOCA = @ALLOCA@
191
225
PACKAGE_NAME = @PACKAGE_NAME@
192
226
PACKAGE_STRING = @PACKAGE_STRING@
193
227
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
228
PACKAGE_URL = @PACKAGE_URL@
194
229
PACKAGE_VERSION = @PACKAGE_VERSION@
195
230
PATH_SEPARATOR = @PATH_SEPARATOR@
196
231
PERL = @PERL@
259
294
libexecdir = @libexecdir@
260
295
localedir = @localedir@
261
296
localstatedir = @localstatedir@
262
 
lt_ECHO = @lt_ECHO@
263
297
ltdl_LIBOBJS = @ltdl_LIBOBJS@
264
298
ltdl_LTLIBOBJS = @ltdl_LTLIBOBJS@
265
299
makesnmplib = @makesnmplib@
284
318
AM_CXXFLAGS = $(SQUID_CXXFLAGS)
285
319
CLEANFILES = 
286
320
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/src \
287
 
        -I$(top_builddir)/include $(SQUID_CPPUNIT_INC) -I$(srcdir) \
288
 
        -I$(srcdir)/smbval
 
321
        -I$(top_builddir)/include $(SQUID_CPPUNIT_INC) $(am__append_1) \
 
322
        -I$(srcdir) -I$(srcdir)/smbval
289
323
SUBDIRS = smbval
290
324
ntlm_smb_lm_auth_SOURCES = libntlmssp.c ntlm_smb_lm_auth.c ntlm_smb_lm_auth.h
291
325
LDADD = \
304
338
        @for dep in $?; do \
305
339
          case '$(am__configure_deps)' in \
306
340
            *$$dep*) \
307
 
              cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
308
 
                && exit 0; \
 
341
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 
342
                && { if test -f $@; then exit 0; else break; fi; }; \
309
343
              exit 1;; \
310
344
          esac; \
311
345
        done; \
312
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  helpers/ntlm_auth/smb_lm/Makefile'; \
313
 
        cd $(top_srcdir) && \
314
 
          $(AUTOMAKE) --foreign  helpers/ntlm_auth/smb_lm/Makefile
 
346
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign helpers/ntlm_auth/smb_lm/Makefile'; \
 
347
        $(am__cd) $(top_srcdir) && \
 
348
          $(AUTOMAKE) --foreign helpers/ntlm_auth/smb_lm/Makefile
315
349
.PRECIOUS: Makefile
316
350
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
317
351
        @case '$?' in \
329
363
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
330
364
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
331
365
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
366
$(am__aclocal_m4_deps):
332
367
 
333
368
clean-checkPROGRAMS:
334
 
        @list='$(check_PROGRAMS)'; for p in $$list; do \
335
 
          f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
336
 
          echo " rm -f $$p $$f"; \
337
 
          rm -f $$p $$f ; \
338
 
        done
 
369
        @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
 
370
        echo " rm -f" $$list; \
 
371
        rm -f $$list || exit $$?; \
 
372
        test -n "$(EXEEXT)" || exit 0; \
 
373
        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
 
374
        echo " rm -f" $$list; \
 
375
        rm -f $$list
339
376
install-libexecPROGRAMS: $(libexec_PROGRAMS)
340
377
        @$(NORMAL_INSTALL)
341
378
        test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
342
 
        @list='$(libexec_PROGRAMS)'; for p in $$list; do \
343
 
          p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
344
 
          if test -f $$p \
345
 
             || test -f $$p1 \
346
 
          ; then \
347
 
            f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
348
 
           echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
349
 
           $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
350
 
          else :; fi; \
351
 
        done
 
379
        @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
 
380
        for p in $$list; do echo "$$p $$p"; done | \
 
381
        sed 's/$(EXEEXT)$$//' | \
 
382
        while read p p1; do if test -f $$p || test -f $$p1; \
 
383
          then echo "$$p"; echo "$$p"; else :; fi; \
 
384
        done | \
 
385
        sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
 
386
            -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
 
387
        sed 'N;N;N;s,\n, ,g' | \
 
388
        $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
 
389
          { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
 
390
            if ($$2 == $$4) files[d] = files[d] " " $$1; \
 
391
            else { print "f", $$3 "/" $$4, $$1; } } \
 
392
          END { for (d in files) print "f", d, files[d] }' | \
 
393
        while read type dir files; do \
 
394
            if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
 
395
            test -z "$$files" || { \
 
396
            echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
 
397
            $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
 
398
            } \
 
399
        ; done
352
400
 
353
401
uninstall-libexecPROGRAMS:
354
402
        @$(NORMAL_UNINSTALL)
355
 
        @list='$(libexec_PROGRAMS)'; for p in $$list; do \
356
 
          f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
357
 
          echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
358
 
          rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
359
 
        done
 
403
        @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
 
404
        files=`for p in $$list; do echo "$$p"; done | \
 
405
          sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
 
406
              -e 's/$$/$(EXEEXT)/' `; \
 
407
        test -n "$$list" || exit 0; \
 
408
        echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
 
409
        cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
360
410
 
361
411
clean-libexecPROGRAMS:
362
 
        @list='$(libexec_PROGRAMS)'; for p in $$list; do \
363
 
          f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
364
 
          echo " rm -f $$p $$f"; \
365
 
          rm -f $$p $$f ; \
366
 
        done
 
412
        @list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
 
413
        echo " rm -f" $$list; \
 
414
        rm -f $$list || exit $$?; \
 
415
        test -n "$(EXEEXT)" || exit 0; \
 
416
        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
 
417
        echo " rm -f" $$list; \
 
418
        rm -f $$list
367
419
ntlm_smb_lm_auth$(EXEEXT): $(ntlm_smb_lm_auth_OBJECTS) $(ntlm_smb_lm_auth_DEPENDENCIES) 
368
420
        @rm -f ntlm_smb_lm_auth$(EXEEXT)
369
421
        $(LINK) $(ntlm_smb_lm_auth_OBJECTS) $(ntlm_smb_lm_auth_LDADD) $(LIBS)
379
431
 
380
432
.c.o:
381
433
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
382
 
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
434
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
383
435
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
384
436
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
385
437
@am__fastdepCC_FALSE@   $(COMPILE) -c $<
386
438
 
387
439
.c.obj:
388
440
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
389
 
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
441
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
390
442
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
391
443
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
392
444
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
393
445
 
394
446
.c.lo:
395
447
@am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
396
 
@am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
448
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
397
449
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
398
450
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
399
451
@am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
411
463
#     (which will cause the Makefiles to be regenerated when you run `make');
412
464
# (2) otherwise, pass the desired values on the `make' command line.
413
465
$(RECURSIVE_TARGETS):
414
 
        @failcom='exit 1'; \
 
466
        @fail= failcom='exit 1'; \
415
467
        for f in x $$MAKEFLAGS; do \
416
468
          case $$f in \
417
469
            *=* | --[!k]*);; \
428
480
          else \
429
481
            local_target="$$target"; \
430
482
          fi; \
431
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
483
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
432
484
          || eval $$failcom; \
433
485
        done; \
434
486
        if test "$$dot_seen" = "no"; then \
436
488
        fi; test -z "$$fail"
437
489
 
438
490
$(RECURSIVE_CLEAN_TARGETS):
439
 
        @failcom='exit 1'; \
 
491
        @fail= failcom='exit 1'; \
440
492
        for f in x $$MAKEFLAGS; do \
441
493
          case $$f in \
442
494
            *=* | --[!k]*);; \
462
514
          else \
463
515
            local_target="$$target"; \
464
516
          fi; \
465
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
517
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
466
518
          || eval $$failcom; \
467
519
        done && test -z "$$fail"
468
520
tags-recursive:
469
521
        list='$(SUBDIRS)'; for subdir in $$list; do \
470
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
522
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
471
523
        done
472
524
ctags-recursive:
473
525
        list='$(SUBDIRS)'; for subdir in $$list; do \
474
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
526
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
475
527
        done
476
528
 
477
529
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
479
531
        unique=`for i in $$list; do \
480
532
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
481
533
          done | \
482
 
          $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
 
534
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
483
535
              END { if (nonempty) { for (i in files) print i; }; }'`; \
484
536
        mkid -fID $$unique
485
537
tags: TAGS
486
538
 
487
539
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
488
540
                $(TAGS_FILES) $(LISP)
489
 
        tags=; \
 
541
        set x; \
490
542
        here=`pwd`; \
491
543
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
492
544
          include_option=--etags-include; \
498
550
        list='$(SUBDIRS)'; for subdir in $$list; do \
499
551
          if test "$$subdir" = .; then :; else \
500
552
            test ! -f $$subdir/TAGS || \
501
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
553
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
502
554
          fi; \
503
555
        done; \
504
556
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
507
559
          done | \
508
560
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
509
561
              END { if (nonempty) { for (i in files) print i; }; }'`; \
510
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
562
        shift; \
 
563
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
511
564
          test -n "$$unique" || unique=$$empty_fix; \
512
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
513
 
            $$tags $$unique; \
 
565
          if test $$# -gt 0; then \
 
566
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
567
              "$$@" $$unique; \
 
568
          else \
 
569
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
570
              $$unique; \
 
571
          fi; \
514
572
        fi
515
573
ctags: CTAGS
516
574
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
517
575
                $(TAGS_FILES) $(LISP)
518
 
        tags=; \
519
576
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
520
577
        unique=`for i in $$list; do \
521
578
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
522
579
          done | \
523
580
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
524
581
              END { if (nonempty) { for (i in files) print i; }; }'`; \
525
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
582
        test -z "$(CTAGS_ARGS)$$unique" \
526
583
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
527
 
             $$tags $$unique
 
584
             $$unique
528
585
 
529
586
GTAGS:
530
587
        here=`$(am__cd) $(top_builddir) && pwd` \
531
 
          && cd $(top_srcdir) \
532
 
          && gtags -i $(GTAGS_ARGS) $$here
 
588
          && $(am__cd) $(top_srcdir) \
 
589
          && gtags -i $(GTAGS_ARGS) "$$here"
533
590
 
534
591
distclean-tags:
535
592
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
536
593
 
537
594
check-TESTS: $(TESTS)
538
 
        @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[        ]'; \
 
595
        @failed=0; all=0; xfail=0; xpass=0; skip=0; \
539
596
        srcdir=$(srcdir); export srcdir; \
540
597
        list=' $(TESTS) '; \
 
598
        $(am__tty_colors); \
541
599
        if test -n "$$list"; then \
542
600
          for tst in $$list; do \
543
601
            if test -f ./$$tst; then dir=./; \
546
604
            if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
547
605
              all=`expr $$all + 1`; \
548
606
              case " $(XFAIL_TESTS) " in \
549
 
              *$$ws$$tst$$ws*) \
 
607
              *[\ \     ]$$tst[\ \      ]*) \
550
608
                xpass=`expr $$xpass + 1`; \
551
609
                failed=`expr $$failed + 1`; \
552
 
                echo "XPASS: $$tst"; \
 
610
                col=$$red; res=XPASS; \
553
611
              ;; \
554
612
              *) \
555
 
                echo "PASS: $$tst"; \
 
613
                col=$$grn; res=PASS; \
556
614
              ;; \
557
615
              esac; \
558
616
            elif test $$? -ne 77; then \
559
617
              all=`expr $$all + 1`; \
560
618
              case " $(XFAIL_TESTS) " in \
561
 
              *$$ws$$tst$$ws*) \
 
619
              *[\ \     ]$$tst[\ \      ]*) \
562
620
                xfail=`expr $$xfail + 1`; \
563
 
                echo "XFAIL: $$tst"; \
 
621
                col=$$lgn; res=XFAIL; \
564
622
              ;; \
565
623
              *) \
566
624
                failed=`expr $$failed + 1`; \
567
 
                echo "FAIL: $$tst"; \
 
625
                col=$$red; res=FAIL; \
568
626
              ;; \
569
627
              esac; \
570
628
            else \
571
629
              skip=`expr $$skip + 1`; \
572
 
              echo "SKIP: $$tst"; \
 
630
              col=$$blu; res=SKIP; \
573
631
            fi; \
 
632
            echo "$${col}$$res$${std}: $$tst"; \
574
633
          done; \
 
634
          if test "$$all" -eq 1; then \
 
635
            tests="test"; \
 
636
            All=""; \
 
637
          else \
 
638
            tests="tests"; \
 
639
            All="All "; \
 
640
          fi; \
575
641
          if test "$$failed" -eq 0; then \
576
642
            if test "$$xfail" -eq 0; then \
577
 
              banner="All $$all tests passed"; \
 
643
              banner="$$All$$all $$tests passed"; \
578
644
            else \
579
 
              banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
 
645
              if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
 
646
              banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
580
647
            fi; \
581
648
          else \
582
649
            if test "$$xpass" -eq 0; then \
583
 
              banner="$$failed of $$all tests failed"; \
 
650
              banner="$$failed of $$all $$tests failed"; \
584
651
            else \
585
 
              banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
 
652
              if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
 
653
              banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
586
654
            fi; \
587
655
          fi; \
588
656
          dashes="$$banner"; \
589
657
          skipped=""; \
590
658
          if test "$$skip" -ne 0; then \
591
 
            skipped="($$skip tests were not run)"; \
 
659
            if test "$$skip" -eq 1; then \
 
660
              skipped="($$skip test was not run)"; \
 
661
            else \
 
662
              skipped="($$skip tests were not run)"; \
 
663
            fi; \
592
664
            test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
593
665
              dashes="$$skipped"; \
594
666
          fi; \
599
671
              dashes="$$report"; \
600
672
          fi; \
601
673
          dashes=`echo "$$dashes" | sed s/./=/g`; \
602
 
          echo "$$dashes"; \
 
674
          if test "$$failed" -eq 0; then \
 
675
            echo "$$grn$$dashes"; \
 
676
          else \
 
677
            echo "$$red$$dashes"; \
 
678
          fi; \
603
679
          echo "$$banner"; \
604
680
          test -z "$$skipped" || echo "$$skipped"; \
605
681
          test -z "$$report" || echo "$$report"; \
606
 
          echo "$$dashes"; \
 
682
          echo "$$dashes$$std"; \
607
683
          test "$$failed" -eq 0; \
608
684
        else :; fi
609
685
 
623
699
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
624
700
          if test -d $$d/$$file; then \
625
701
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
702
            if test -d "$(distdir)/$$file"; then \
 
703
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
704
            fi; \
626
705
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
627
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
706
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
707
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
628
708
            fi; \
629
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
709
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
630
710
          else \
631
 
            test -f $(distdir)/$$file \
632
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
711
            test -f "$(distdir)/$$file" \
 
712
            || cp -p $$d/$$file "$(distdir)/$$file" \
633
713
            || exit 1; \
634
714
          fi; \
635
715
        done
636
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
716
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
637
717
          if test "$$subdir" = .; then :; else \
638
718
            test -d "$(distdir)/$$subdir" \
639
719
            || $(MKDIR_P) "$(distdir)/$$subdir" \
640
720
            || exit 1; \
641
 
            distdir=`$(am__cd) $(distdir) && pwd`; \
642
 
            top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
643
 
            (cd $$subdir && \
 
721
          fi; \
 
722
        done
 
723
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
724
          if test "$$subdir" = .; then :; else \
 
725
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
726
            $(am__relativize); \
 
727
            new_distdir=$$reldir; \
 
728
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
729
            $(am__relativize); \
 
730
            new_top_distdir=$$reldir; \
 
731
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
732
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
733
            ($(am__cd) $$subdir && \
644
734
              $(MAKE) $(AM_MAKEFLAGS) \
645
 
                top_distdir="$$top_distdir" \
646
 
                distdir="$$distdir/$$subdir" \
 
735
                top_distdir="$$new_top_distdir" \
 
736
                distdir="$$new_distdir" \
647
737
                am__remove_distdir=: \
648
738
                am__skip_length_check=: \
 
739
                am__skip_mode_fix=: \
649
740
                distdir) \
650
741
              || exit 1; \
651
742
          fi; \
681
772
 
682
773
distclean-generic:
683
774
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
775
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
684
776
 
685
777
maintainer-clean-generic:
686
778
        @echo "This command is intended for maintainers to use"
702
794
 
703
795
html: html-recursive
704
796
 
 
797
html-am:
 
798
 
705
799
info: info-recursive
706
800
 
707
801
info-am:
710
804
 
711
805
install-dvi: install-dvi-recursive
712
806
 
 
807
install-dvi-am:
 
808
 
713
809
install-exec-am: install-libexecPROGRAMS
714
810
 
715
811
install-html: install-html-recursive
716
812
 
 
813
install-html-am:
 
814
 
717
815
install-info: install-info-recursive
718
816
 
 
817
install-info-am:
 
818
 
719
819
install-man:
720
820
 
721
821
install-pdf: install-pdf-recursive
722
822
 
 
823
install-pdf-am:
 
824
 
723
825
install-ps: install-ps-recursive
724
826
 
 
827
install-ps-am:
 
828
 
725
829
installcheck-am:
726
830
 
727
831
maintainer-clean: maintainer-clean-recursive
744
848
 
745
849
uninstall-am: uninstall-libexecPROGRAMS
746
850
 
747
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
748
 
        install-strip
 
851
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \
 
852
        ctags-recursive install-am install-strip tags-recursive
749
853
 
750
854
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
751
855
        all all-am check check-TESTS check-am clean \
766
870
 
767
871
 
768
872
$(OBJS): $(top_srcdir)/include/version.h $(top_builddir)/include/autoconf.h
 
873
 
769
874
# Tell versions [3.59,3.63) of GNU make to not export all variables.
770
875
# Otherwise a system limit (for SysV at least) may be exceeded.
771
876
.NOEXPORT: