~ubuntu-branches/ubuntu/trusty/procps/trusty-proposed

« back to all changes in this revision

Viewing changes to testsuite/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-01-06 15:28:04 UTC
  • mfrom: (2.1.27 sid)
  • Revision ID: package-import@ubuntu.com-20140106152804-ryhqa7ee39xock4f
Tags: 1:3.3.9-1ubuntu1
* Merge with Debian; remaining changes:
  - debian/sysctl.d (Ubuntu-specific):
    + 10-console-messages.conf: stop low-level kernel messages on console.
    + 10-kernel-hardening.conf: add the kptr_restrict setting
    + 10-keyboard.conf.powerpc: mouse button emulation on PowerPC.
    + 10-ipv6-privacy.conf: add a file to sysctl.d to apply the defaults
      for IPv6 privacy extensions for interfaces. (LP: #176125, #841353)
    + 10-link-restrictions.conf: even though the Ubuntu
      kernel is built with these defaults in place, we want to make sure
      that people running stock kernels don't miss out.
    + 10-magic-sysrq.conf: Disable most magic sysrq by default, allowing
      critical sync, remount, reboot functions. (LP: #194676, LP: #1025467)
    + 10-network-security.conf: enable rp_filter and SYN-flood protection.
    + 10-ptrace.conf: describe new PTRACE setting.
    + 10-zeropage.conf: safe mmap_min_addr value for graceful fall-back.
    + README: describe how this directory is supposed to work.
  - debian/upstart (Ubuntu-specific): upstart configuration to replace old
    style sysv init script
  - Fix cross build
  - ignore_eaccess.patch: If we get eaccess when opening a sysctl file for
    writing, don't error out.  Otherwise package upgrades can fail,
    especially in containers.  (LP: #1157643)
  - Build using dh-autoreconf, update libtool.m4.
  - Build-depend on pkg-config.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11.6 from Makefile.am.
 
1
# Makefile.in generated by automake 1.14 from Makefile.am.
2
2
# @configure_input@
3
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.
 
4
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
 
5
 
7
6
# This Makefile.in is free software; the Free Software Foundation
8
7
# gives unlimited permission to copy and/or distribute it,
9
8
# with or without modifications, as long as this notice is preserved.
16
15
@SET_MAKE@
17
16
 
18
17
VPATH = @srcdir@
19
 
am__make_dryrun = \
20
 
  { \
21
 
    am__dry=no; \
 
18
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
 
19
am__make_running_with_option = \
 
20
  case $${target_option-} in \
 
21
      ?) ;; \
 
22
      *) echo "am__make_running_with_option: internal error: invalid" \
 
23
              "target option '$${target_option-}' specified" >&2; \
 
24
         exit 1;; \
 
25
  esac; \
 
26
  has_opt=no; \
 
27
  sane_makeflags=$$MAKEFLAGS; \
 
28
  if $(am__is_gnu_make); then \
 
29
    sane_makeflags=$$MFLAGS; \
 
30
  else \
22
31
    case $$MAKEFLAGS in \
23
32
      *\\[\ \   ]*) \
24
 
        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
25
 
          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
26
 
      *) \
27
 
        for am__flg in $$MAKEFLAGS; do \
28
 
          case $$am__flg in \
29
 
            *=*|--*) ;; \
30
 
            *n*) am__dry=yes; break;; \
31
 
          esac; \
32
 
        done;; \
33
 
    esac; \
34
 
    test $$am__dry = yes; \
35
 
  }
 
33
        bs=\\; \
 
34
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 
35
          | sed "s/$$bs$$bs[$$bs $$bs   ]*//g"`;; \
 
36
    esac; \
 
37
  fi; \
 
38
  skip_next=no; \
 
39
  strip_trailopt () \
 
40
  { \
 
41
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 
42
  }; \
 
43
  for flg in $$sane_makeflags; do \
 
44
    test $$skip_next = yes && { skip_next=no; continue; }; \
 
45
    case $$flg in \
 
46
      *=*|--*) continue;; \
 
47
        -*I) strip_trailopt 'I'; skip_next=yes;; \
 
48
      -*I?*) strip_trailopt 'I';; \
 
49
        -*O) strip_trailopt 'O'; skip_next=yes;; \
 
50
      -*O?*) strip_trailopt 'O';; \
 
51
        -*l) strip_trailopt 'l'; skip_next=yes;; \
 
52
      -*l?*) strip_trailopt 'l';; \
 
53
      -[dEDm]) skip_next=yes;; \
 
54
      -[JT]) skip_next=yes;; \
 
55
    esac; \
 
56
    case $$flg in \
 
57
      *$$target_option*) has_opt=yes; break;; \
 
58
    esac; \
 
59
  done; \
 
60
  test $$has_opt = yes
 
61
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
 
62
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
36
63
pkgdatadir = $(datadir)/@PACKAGE@
37
64
pkgincludedir = $(includedir)/@PACKAGE@
38
65
pkglibdir = $(libdir)/@PACKAGE@
74
101
@LINUX_TRUE@    w
75
102
 
76
103
subdir = testsuite
77
 
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
104
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
 
105
        $(top_srcdir)/mkinstalldirs $(top_srcdir)/depcomp README
78
106
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
79
107
am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
80
108
        $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \
94
122
am_test_schedbatch_OBJECTS = test-schedbatch.$(OBJEXT)
95
123
test_schedbatch_OBJECTS = $(am_test_schedbatch_OBJECTS)
96
124
test_schedbatch_LDADD = $(LDADD)
 
125
AM_V_lt = $(am__v_lt_@AM_V@)
 
126
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
 
127
am__v_lt_0 = --silent
 
128
am__v_lt_1 = 
 
129
AM_V_P = $(am__v_P_@AM_V@)
 
130
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
 
131
am__v_P_0 = false
 
132
am__v_P_1 = :
 
133
AM_V_GEN = $(am__v_GEN_@AM_V@)
 
134
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
 
135
am__v_GEN_0 = @echo "  GEN     " $@;
 
136
am__v_GEN_1 = 
 
137
AM_V_at = $(am__v_at_@AM_V@)
 
138
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
 
139
am__v_at_0 = @
 
140
am__v_at_1 = 
97
141
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
98
142
depcomp = $(SHELL) $(top_srcdir)/depcomp
99
143
am__depfiles_maybe = depfiles
100
144
am__mv = mv -f
101
145
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
102
146
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
103
 
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
104
 
        --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
105
 
        $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
147
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
148
        $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
 
149
        $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
150
        $(AM_CFLAGS) $(CFLAGS)
 
151
AM_V_CC = $(am__v_CC_@AM_V@)
 
152
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
 
153
am__v_CC_0 = @echo "  CC      " $@;
 
154
am__v_CC_1 = 
106
155
CCLD = $(CC)
107
 
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
108
 
        --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
109
 
        $(LDFLAGS) -o $@
 
156
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
157
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
158
        $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
159
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
 
160
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
 
161
am__v_CCLD_0 = @echo "  CCLD    " $@;
 
162
am__v_CCLD_1 = 
110
163
SOURCES = $(test_schedbatch_SOURCES)
111
164
DIST_SOURCES = $(test_schedbatch_SOURCES)
112
165
am__can_run_installinfo = \
114
167
    n|no|NO) false;; \
115
168
    *) (install-info --version) >/dev/null 2>&1;; \
116
169
  esac
 
170
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 
171
# Read a list of newline-separated strings from the standard input,
 
172
# and print each of them once, without duplicates.  Input order is
 
173
# *not* preserved.
 
174
am__uniquify_input = $(AWK) '\
 
175
  BEGIN { nonempty = 0; } \
 
176
  { items[$$0] = 1; nonempty = 1; } \
 
177
  END { if (nonempty) { for (i in items) print i; }; } \
 
178
'
 
179
# Make sure the list of sources is unique.  This is necessary because,
 
180
# e.g., the same source file might be shared among _SOURCES variables
 
181
# for different programs/libraries.
 
182
am__define_uniq_tagged_files = \
 
183
  list='$(am__tagged_files)'; \
 
184
  unique=`for i in $$list; do \
 
185
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
186
  done | $(am__uniquify_input)`
117
187
ETAGS = etags
118
188
CTAGS = ctags
119
189
RUNTESTDEFAULTFLAGS = --tool $$tool --srcdir $$srcdir
122
192
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
123
193
ACLOCAL = @ACLOCAL@
124
194
AMTAR = @AMTAR@
 
195
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
125
196
AR = @AR@
126
197
AUTOCONF = @AUTOCONF@
127
198
AUTOHEADER = @AUTOHEADER@
334
405
        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
335
406
        echo " rm -f" $$list; \
336
407
        rm -f $$list
 
408
 
337
409
test-schedbatch$(EXEEXT): $(test_schedbatch_OBJECTS) $(test_schedbatch_DEPENDENCIES) $(EXTRA_test_schedbatch_DEPENDENCIES) 
338
410
        @rm -f test-schedbatch$(EXEEXT)
339
 
        $(LINK) $(test_schedbatch_OBJECTS) $(test_schedbatch_LDADD) $(LIBS)
 
411
        $(AM_V_CCLD)$(LINK) $(test_schedbatch_OBJECTS) $(test_schedbatch_LDADD) $(LIBS)
340
412
 
341
413
mostlyclean-compile:
342
414
        -rm -f *.$(OBJEXT)
347
419
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-schedbatch.Po@am__quote@
348
420
 
349
421
.c.o:
350
 
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
351
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
352
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 
422
@am__fastdepCC_TRUE@    $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
423
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
424
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
353
425
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
354
 
@am__fastdepCC_FALSE@   $(COMPILE) -c $<
 
426
@am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
355
427
 
356
428
.c.obj:
357
 
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
358
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
359
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 
429
@am__fastdepCC_TRUE@    $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
 
430
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
431
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
360
432
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
361
 
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
433
@am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
362
434
 
363
435
.c.lo:
364
 
@am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
365
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
366
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
 
436
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
437
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
438
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
367
439
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
368
 
@am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
 
440
@am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
369
441
 
370
442
test-schedbatch.o: ps.test/test-schedbatch.c
371
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test-schedbatch.o -MD -MP -MF $(DEPDIR)/test-schedbatch.Tpo -c -o test-schedbatch.o `test -f 'ps.test/test-schedbatch.c' || echo '$(srcdir)/'`ps.test/test-schedbatch.c
372
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/test-schedbatch.Tpo $(DEPDIR)/test-schedbatch.Po
373
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='ps.test/test-schedbatch.c' object='test-schedbatch.o' libtool=no @AMDEPBACKSLASH@
 
443
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test-schedbatch.o -MD -MP -MF $(DEPDIR)/test-schedbatch.Tpo -c -o test-schedbatch.o `test -f 'ps.test/test-schedbatch.c' || echo '$(srcdir)/'`ps.test/test-schedbatch.c
 
444
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/test-schedbatch.Tpo $(DEPDIR)/test-schedbatch.Po
 
445
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='ps.test/test-schedbatch.c' object='test-schedbatch.o' libtool=no @AMDEPBACKSLASH@
374
446
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
375
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test-schedbatch.o `test -f 'ps.test/test-schedbatch.c' || echo '$(srcdir)/'`ps.test/test-schedbatch.c
 
447
@am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test-schedbatch.o `test -f 'ps.test/test-schedbatch.c' || echo '$(srcdir)/'`ps.test/test-schedbatch.c
376
448
 
377
449
test-schedbatch.obj: ps.test/test-schedbatch.c
378
 
@am__fastdepCC_TRUE@    $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test-schedbatch.obj -MD -MP -MF $(DEPDIR)/test-schedbatch.Tpo -c -o test-schedbatch.obj `if test -f 'ps.test/test-schedbatch.c'; then $(CYGPATH_W) 'ps.test/test-schedbatch.c'; else $(CYGPATH_W) '$(srcdir)/ps.test/test-schedbatch.c'; fi`
379
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/test-schedbatch.Tpo $(DEPDIR)/test-schedbatch.Po
380
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='ps.test/test-schedbatch.c' object='test-schedbatch.obj' libtool=no @AMDEPBACKSLASH@
 
450
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test-schedbatch.obj -MD -MP -MF $(DEPDIR)/test-schedbatch.Tpo -c -o test-schedbatch.obj `if test -f 'ps.test/test-schedbatch.c'; then $(CYGPATH_W) 'ps.test/test-schedbatch.c'; else $(CYGPATH_W) '$(srcdir)/ps.test/test-schedbatch.c'; fi`
 
451
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/test-schedbatch.Tpo $(DEPDIR)/test-schedbatch.Po
 
452
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='ps.test/test-schedbatch.c' object='test-schedbatch.obj' libtool=no @AMDEPBACKSLASH@
381
453
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
382
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test-schedbatch.obj `if test -f 'ps.test/test-schedbatch.c'; then $(CYGPATH_W) 'ps.test/test-schedbatch.c'; else $(CYGPATH_W) '$(srcdir)/ps.test/test-schedbatch.c'; fi`
 
454
@am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test-schedbatch.obj `if test -f 'ps.test/test-schedbatch.c'; then $(CYGPATH_W) 'ps.test/test-schedbatch.c'; else $(CYGPATH_W) '$(srcdir)/ps.test/test-schedbatch.c'; fi`
383
455
 
384
456
mostlyclean-libtool:
385
457
        -rm -f *.lo
387
459
clean-libtool:
388
460
        -rm -rf .libs _libs
389
461
 
390
 
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
391
 
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
392
 
        unique=`for i in $$list; do \
393
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
394
 
          done | \
395
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
396
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
397
 
        mkid -fID $$unique
398
 
tags: TAGS
 
462
ID: $(am__tagged_files)
 
463
        $(am__define_uniq_tagged_files); mkid -fID $$unique
 
464
tags: tags-am
 
465
TAGS: tags
399
466
 
400
 
TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
401
 
                $(TAGS_FILES) $(LISP)
 
467
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
402
468
        set x; \
403
469
        here=`pwd`; \
404
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
405
 
        unique=`for i in $$list; do \
406
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
407
 
          done | \
408
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
409
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
470
        $(am__define_uniq_tagged_files); \
410
471
        shift; \
411
472
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
412
473
          test -n "$$unique" || unique=$$empty_fix; \
418
479
              $$unique; \
419
480
          fi; \
420
481
        fi
421
 
ctags: CTAGS
422
 
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
423
 
                $(TAGS_FILES) $(LISP)
424
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
425
 
        unique=`for i in $$list; do \
426
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
427
 
          done | \
428
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
429
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
482
ctags: ctags-am
 
483
 
 
484
CTAGS: ctags
 
485
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 
486
        $(am__define_uniq_tagged_files); \
430
487
        test -z "$(CTAGS_ARGS)$$unique" \
431
488
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
432
489
             $$unique
435
492
        here=`$(am__cd) $(top_builddir) && pwd` \
436
493
          && $(am__cd) $(top_srcdir) \
437
494
          && gtags -i $(GTAGS_ARGS) "$$here"
 
495
cscopelist: cscopelist-am
 
496
 
 
497
cscopelist-am: $(am__tagged_files)
 
498
        list='$(am__tagged_files)'; \
 
499
        case "$(srcdir)" in \
 
500
          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 
501
          *) sdir=$(subdir)/$(srcdir) ;; \
 
502
        esac; \
 
503
        for i in $$list; do \
 
504
          if test -f "$$i"; then \
 
505
            echo "$(subdir)/$$i"; \
 
506
          else \
 
507
            echo "$$sdir/$$i"; \
 
508
          fi; \
 
509
        done >> $(top_builddir)/cscope.files
438
510
 
439
511
distclean-tags:
440
512
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
442
514
check-DEJAGNU: site.exp
443
515
        srcdir='$(srcdir)'; export srcdir; \
444
516
        EXPECT=$(EXPECT); export EXPECT; \
445
 
        runtest=$(RUNTEST); \
446
 
        if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
 
517
        if $(SHELL) -c "$(RUNTEST) --version" > /dev/null 2>&1; then \
447
518
          exit_status=0; l='$(DEJATOOL)'; for tool in $$l; do \
448
 
            if $$runtest $(AM_RUNTESTFLAGS) $(RUNTESTDEFAULTFLAGS) $(RUNTESTFLAGS); \
 
519
            if $(RUNTEST) $(AM_RUNTESTFLAGS) $(RUNTESTDEFAULTFLAGS) $(RUNTESTFLAGS); \
449
520
            then :; else exit_status=1; fi; \
450
521
          done; \
451
 
        else echo "WARNING: could not find \`runtest'" 1>&2; :;\
 
522
        else echo "WARNING: could not find '$(RUNTEST)'" 1>&2; :;\
452
523
        fi; \
453
524
        exit $$exit_status
454
525
site.exp: Makefile $(EXTRA_DEJAGNU_SITE_CONFIG)
455
 
        @echo 'Making a new site.exp file...'
 
526
        @echo 'Making a new site.exp file ...'
456
527
        @echo '## these variables are automatically generated by make ##' >site.tmp
457
528
        @echo '# Do not edit here.  If you wish to override these values' >>site.tmp
458
529
        @echo '# edit the last section' >>site.tmp
620
691
 
621
692
.MAKE: check-am install-am install-strip
622
693
 
623
 
.PHONY: CTAGS GTAGS all all-am check check-DEJAGNU check-am clean \
624
 
        clean-generic clean-libtool clean-noinstPROGRAMS ctags \
625
 
        distclean distclean-DEJAGNU distclean-compile \
 
694
.PHONY: CTAGS GTAGS TAGS all all-am check check-DEJAGNU check-am clean \
 
695
        clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \
 
696
        ctags ctags-am distclean distclean-DEJAGNU distclean-compile \
626
697
        distclean-generic distclean-libtool distclean-tags distdir dvi \
627
698
        dvi-am html html-am info info-am install install-am \
628
699
        install-data install-data-am install-dvi install-dvi-am \
632
703
        installcheck installcheck-am installdirs maintainer-clean \
633
704
        maintainer-clean-generic mostlyclean mostlyclean-compile \
634
705
        mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
635
 
        tags uninstall uninstall-am
 
706
        tags tags-am uninstall uninstall-am
636
707
 
637
708
export DEJAGNU
638
709