~ubuntu-branches/ubuntu/trusty/systemd/trusty

« back to all changes in this revision

Viewing changes to docs/libudev/Makefile.in

Tags: upstream-202
ImportĀ upstreamĀ versionĀ 202

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
    n|no|NO) false;; \
91
91
    *) (install-info --version) >/dev/null 2>&1;; \
92
92
  esac
93
 
am__tty_colors_dummy = \
94
 
  mgn= red= grn= lgn= blu= brg= std=; \
95
 
  am__color_tests=no
96
 
am__tty_colors = { \
97
 
  $(am__tty_colors_dummy); \
98
 
  if test "X$(AM_COLOR_TESTS)" = Xno; then \
99
 
    am__color_tests=no; \
100
 
  elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
101
 
    am__color_tests=yes; \
102
 
  elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
103
 
    am__color_tests=yes; \
104
 
  fi; \
105
 
  if test $$am__color_tests = yes; then \
106
 
    red=''; \
107
 
    grn=''; \
108
 
    lgn=''; \
109
 
    blu=''; \
110
 
    mgn=''; \
111
 
    brg=''; \
112
 
    std=''; \
113
 
  fi; \
114
 
}
115
93
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
116
94
ACLOCAL = @ACLOCAL@
117
95
ACL_LIBS = @ACL_LIBS@
137
115
DATADIRNAME = @DATADIRNAME@
138
116
DBUS_CFLAGS = @DBUS_CFLAGS@
139
117
DBUS_LIBS = @DBUS_LIBS@
 
118
DEBUGTTY = @DEBUGTTY@
140
119
DEFS = @DEFS@
141
120
DEPDIR = @DEPDIR@
142
121
DLLTOOL = @DLLTOOL@
260
239
SPHINX_BUILD = @SPHINX_BUILD@
261
240
STRINGS = @STRINGS@
262
241
STRIP = @STRIP@
 
242
SUSHELL = @SUSHELL@
263
243
SYSTEM_SYSVINIT_PATH = @SYSTEM_SYSVINIT_PATH@
264
244
SYSTEM_SYSVRCND_PATH = @SYSTEM_SYSVRCND_PATH@
 
245
TELINIT = @TELINIT@
265
246
USE_NLS = @USE_NLS@
266
247
VERSION = @VERSION@
267
248
XATTR_LIBS = @XATTR_LIBS@
330
311
sbindir = @sbindir@
331
312
sharedstatedir = @sharedstatedir@
332
313
srcdir = @srcdir@
333
 
sushell = @sushell@
334
314
sysconfdir = @sysconfdir@
335
315
target_alias = @target_alias@
336
316
top_build_prefix = @top_build_prefix@
463
443
@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
464
444
@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP = 
465
445
@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
466
 
 
467
 
# Files not to distribute
468
 
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
469
 
# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
470
 
#DISTCLEANFILES +=
471
 
 
472
 
# Comment this out if you want your docs-status tested during 'make check'
473
 
@ENABLE_GTK_DOC_TESTS_TRUE@@ENABLE_GTK_DOC_TRUE@TESTS_ENVIRONMENT = cd $(top_srcdir)
474
 
@ENABLE_GTK_DOC_TESTS_TRUE@@ENABLE_GTK_DOC_TRUE@TESTS = $(GTKDOC_CHECK)
475
446
all: all-am
476
447
 
477
448
.SUFFIXES:
523
494
cscope cscopelist:
524
495
 
525
496
 
526
 
check-TESTS: $(TESTS)
527
 
        @failed=0; all=0; xfail=0; xpass=0; skip=0; \
528
 
        srcdir=$(srcdir); export srcdir; \
529
 
        list=' $(TESTS) '; \
530
 
        $(am__tty_colors); \
531
 
        if test -n "$$list"; then \
532
 
          for tst in $$list; do \
533
 
            if test -f ./$$tst; then dir=./; \
534
 
            elif test -f $$tst; then dir=; \
535
 
            else dir="$(srcdir)/"; fi; \
536
 
            if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then \
537
 
              all=`expr $$all + 1`; \
538
 
              case " $(XFAIL_TESTS) " in \
539
 
              *[\ \     ]$$tst[\ \      ]*) \
540
 
                xpass=`expr $$xpass + 1`; \
541
 
                failed=`expr $$failed + 1`; \
542
 
                col=$$red; res=XPASS; \
543
 
              ;; \
544
 
              *) \
545
 
                col=$$grn; res=PASS; \
546
 
              ;; \
547
 
              esac; \
548
 
            elif test $$? -ne 77; then \
549
 
              all=`expr $$all + 1`; \
550
 
              case " $(XFAIL_TESTS) " in \
551
 
              *[\ \     ]$$tst[\ \      ]*) \
552
 
                xfail=`expr $$xfail + 1`; \
553
 
                col=$$lgn; res=XFAIL; \
554
 
              ;; \
555
 
              *) \
556
 
                failed=`expr $$failed + 1`; \
557
 
                col=$$red; res=FAIL; \
558
 
              ;; \
559
 
              esac; \
560
 
            else \
561
 
              skip=`expr $$skip + 1`; \
562
 
              col=$$blu; res=SKIP; \
563
 
            fi; \
564
 
            echo "$${col}$$res$${std}: $$tst"; \
565
 
          done; \
566
 
          if test "$$all" -eq 1; then \
567
 
            tests="test"; \
568
 
            All=""; \
569
 
          else \
570
 
            tests="tests"; \
571
 
            All="All "; \
572
 
          fi; \
573
 
          if test "$$failed" -eq 0; then \
574
 
            if test "$$xfail" -eq 0; then \
575
 
              banner="$$All$$all $$tests passed"; \
576
 
            else \
577
 
              if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
578
 
              banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
579
 
            fi; \
580
 
          else \
581
 
            if test "$$xpass" -eq 0; then \
582
 
              banner="$$failed of $$all $$tests failed"; \
583
 
            else \
584
 
              if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
585
 
              banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
586
 
            fi; \
587
 
          fi; \
588
 
          dashes="$$banner"; \
589
 
          skipped=""; \
590
 
          if test "$$skip" -ne 0; then \
591
 
            if test "$$skip" -eq 1; then \
592
 
              skipped="($$skip test was not run)"; \
593
 
            else \
594
 
              skipped="($$skip tests were not run)"; \
595
 
            fi; \
596
 
            test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
597
 
              dashes="$$skipped"; \
598
 
          fi; \
599
 
          report=""; \
600
 
          if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
601
 
            report="Please report to $(PACKAGE_BUGREPORT)"; \
602
 
            test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
603
 
              dashes="$$report"; \
604
 
          fi; \
605
 
          dashes=`echo "$$dashes" | sed s/./=/g`; \
606
 
          if test "$$failed" -eq 0; then \
607
 
            col="$$grn"; \
608
 
          else \
609
 
            col="$$red"; \
610
 
          fi; \
611
 
          echo "$${col}$$dashes$${std}"; \
612
 
          echo "$${col}$$banner$${std}"; \
613
 
          test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
614
 
          test -z "$$report" || echo "$${col}$$report$${std}"; \
615
 
          echo "$${col}$$dashes$${std}"; \
616
 
          test "$$failed" -eq 0; \
617
 
        else :; fi
618
 
 
619
497
distdir: $(DISTFILES)
620
498
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
621
499
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
650
528
          top_distdir="$(top_distdir)" distdir="$(distdir)" \
651
529
          dist-hook
652
530
check-am: all-am
653
 
        $(MAKE) $(AM_MAKEFLAGS) check-TESTS
654
531
check: check-am
655
532
all-am: Makefile all-local
656
533
installdirs:
752
629
 
753
630
uninstall-am: uninstall-local
754
631
 
755
 
.MAKE: check-am install-am install-strip
 
632
.MAKE: install-am install-strip
756
633
 
757
 
.PHONY: all all-am all-local check check-TESTS check-am clean \
758
 
        clean-generic clean-libtool clean-local dist-hook distclean \
 
634
.PHONY: all all-am all-local check check-am clean clean-generic \
 
635
        clean-libtool clean-local dist-hook distclean \
759
636
        distclean-generic distclean-libtool distclean-local distdir \
760
637
        dvi dvi-am html html-am info info-am install install-am \
761
638
        install-data install-data-am install-data-local install-dvi \
963
840
 
964
841
.PHONY : dist-hook-local docs
965
842
 
 
843
# Files not to distribute
 
844
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
 
845
# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
 
846
#DISTCLEANFILES +=
 
847
 
 
848
# Comment this out if you want your docs-status tested during 'make check'
 
849
#TESTS_ENVIRONMENT = cd $(top_srcdir)
 
850
#TESTS = $(GTKDOC_CHECK)
 
851
 
966
852
# Tell versions [3.59,3.63) of GNU make to not export all variables.
967
853
# Otherwise a system limit (for SysV at least) may be exceeded.
968
854
.NOEXPORT: