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

« back to all changes in this revision

Viewing changes to docs/gudev/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@
470
450
@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
471
451
@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP = 
472
452
@ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
473
 
 
474
 
# Files not to distribute
475
 
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
476
 
# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
477
 
#DISTCLEANFILES +=
478
 
 
479
 
# Comment this out if you want your docs-status tested during 'make check'
480
 
@ENABLE_GTK_DOC_TESTS_TRUE@@ENABLE_GTK_DOC_TRUE@TESTS_ENVIRONMENT = cd $(top_srcdir)
481
 
@ENABLE_GTK_DOC_TESTS_TRUE@@ENABLE_GTK_DOC_TRUE@TESTS = $(GTKDOC_CHECK)
482
453
all: all-am
483
454
 
484
455
.SUFFIXES:
530
501
cscope cscopelist:
531
502
 
532
503
 
533
 
check-TESTS: $(TESTS)
534
 
        @failed=0; all=0; xfail=0; xpass=0; skip=0; \
535
 
        srcdir=$(srcdir); export srcdir; \
536
 
        list=' $(TESTS) '; \
537
 
        $(am__tty_colors); \
538
 
        if test -n "$$list"; then \
539
 
          for tst in $$list; do \
540
 
            if test -f ./$$tst; then dir=./; \
541
 
            elif test -f $$tst; then dir=; \
542
 
            else dir="$(srcdir)/"; fi; \
543
 
            if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then \
544
 
              all=`expr $$all + 1`; \
545
 
              case " $(XFAIL_TESTS) " in \
546
 
              *[\ \     ]$$tst[\ \      ]*) \
547
 
                xpass=`expr $$xpass + 1`; \
548
 
                failed=`expr $$failed + 1`; \
549
 
                col=$$red; res=XPASS; \
550
 
              ;; \
551
 
              *) \
552
 
                col=$$grn; res=PASS; \
553
 
              ;; \
554
 
              esac; \
555
 
            elif test $$? -ne 77; then \
556
 
              all=`expr $$all + 1`; \
557
 
              case " $(XFAIL_TESTS) " in \
558
 
              *[\ \     ]$$tst[\ \      ]*) \
559
 
                xfail=`expr $$xfail + 1`; \
560
 
                col=$$lgn; res=XFAIL; \
561
 
              ;; \
562
 
              *) \
563
 
                failed=`expr $$failed + 1`; \
564
 
                col=$$red; res=FAIL; \
565
 
              ;; \
566
 
              esac; \
567
 
            else \
568
 
              skip=`expr $$skip + 1`; \
569
 
              col=$$blu; res=SKIP; \
570
 
            fi; \
571
 
            echo "$${col}$$res$${std}: $$tst"; \
572
 
          done; \
573
 
          if test "$$all" -eq 1; then \
574
 
            tests="test"; \
575
 
            All=""; \
576
 
          else \
577
 
            tests="tests"; \
578
 
            All="All "; \
579
 
          fi; \
580
 
          if test "$$failed" -eq 0; then \
581
 
            if test "$$xfail" -eq 0; then \
582
 
              banner="$$All$$all $$tests passed"; \
583
 
            else \
584
 
              if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
585
 
              banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
586
 
            fi; \
587
 
          else \
588
 
            if test "$$xpass" -eq 0; then \
589
 
              banner="$$failed of $$all $$tests failed"; \
590
 
            else \
591
 
              if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
592
 
              banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
593
 
            fi; \
594
 
          fi; \
595
 
          dashes="$$banner"; \
596
 
          skipped=""; \
597
 
          if test "$$skip" -ne 0; then \
598
 
            if test "$$skip" -eq 1; then \
599
 
              skipped="($$skip test was not run)"; \
600
 
            else \
601
 
              skipped="($$skip tests were not run)"; \
602
 
            fi; \
603
 
            test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
604
 
              dashes="$$skipped"; \
605
 
          fi; \
606
 
          report=""; \
607
 
          if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
608
 
            report="Please report to $(PACKAGE_BUGREPORT)"; \
609
 
            test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
610
 
              dashes="$$report"; \
611
 
          fi; \
612
 
          dashes=`echo "$$dashes" | sed s/./=/g`; \
613
 
          if test "$$failed" -eq 0; then \
614
 
            col="$$grn"; \
615
 
          else \
616
 
            col="$$red"; \
617
 
          fi; \
618
 
          echo "$${col}$$dashes$${std}"; \
619
 
          echo "$${col}$$banner$${std}"; \
620
 
          test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
621
 
          test -z "$$report" || echo "$${col}$$report$${std}"; \
622
 
          echo "$${col}$$dashes$${std}"; \
623
 
          test "$$failed" -eq 0; \
624
 
        else :; fi
625
 
 
626
504
distdir: $(DISTFILES)
627
505
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
628
506
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
657
535
          top_distdir="$(top_distdir)" distdir="$(distdir)" \
658
536
          dist-hook
659
537
check-am: all-am
660
 
        $(MAKE) $(AM_MAKEFLAGS) check-TESTS
661
538
check: check-am
662
539
all-am: Makefile all-local
663
540
installdirs:
759
636
 
760
637
uninstall-am: uninstall-local
761
638
 
762
 
.MAKE: check-am install-am install-strip
 
639
.MAKE: install-am install-strip
763
640
 
764
 
.PHONY: all all-am all-local check check-TESTS check-am clean \
765
 
        clean-generic clean-libtool clean-local dist-hook distclean \
 
641
.PHONY: all all-am all-local check check-am clean clean-generic \
 
642
        clean-libtool clean-local dist-hook distclean \
766
643
        distclean-generic distclean-libtool distclean-local distdir \
767
644
        dvi dvi-am html html-am info info-am install install-am \
768
645
        install-data install-data-am install-data-local install-dvi \
970
847
 
971
848
.PHONY : dist-hook-local docs
972
849
 
 
850
# Files not to distribute
 
851
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
 
852
# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
 
853
#DISTCLEANFILES +=
 
854
 
 
855
# Comment this out if you want your docs-status tested during 'make check'
 
856
#TESTS_ENVIRONMENT = cd $(top_srcdir)
 
857
#TESTS = $(GTKDOC_CHECK)
 
858
 
973
859
# Tell versions [3.59,3.63) of GNU make to not export all variables.
974
860
# Otherwise a system limit (for SysV at least) may be exceeded.
975
861
.NOEXPORT: