~ubuntu-branches/ubuntu/oneiric/libpng/oneiric

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2009-05-22 09:11:26 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090522091126-ackh8fu2581nwuyg
Tags: 1.2.36-1
* New upstream release 
* Standards-Version is 3.8.1
* debhelper compat is 7
* Run dh_prep instead of dh_clean -k

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.10.2 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
193
193
NM = @NM@
194
194
NMEDIT = @NMEDIT@
195
195
OBJDUMP = @OBJDUMP@
 
196
OTOOL = @OTOOL@
 
197
OTOOL64 = @OTOOL64@
196
198
OBJEXT = @OBJEXT@
197
199
PACKAGE = @PACKAGE@
198
200
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
331
333
        ${srcdir}/contrib/pngsuite/* \
332
334
        ${srcdir}/contrib/visupng/* \
333
335
        $(TESTS) \
334
 
        example.c libpng-1.2.35.txt pngvcrd.c 
 
336
        example.c libpng-1.2.36.txt pngvcrd.c 
335
337
 
336
338
CLEANFILES = pngout.png libpng12.pc libpng12-config libpng.vers \
337
339
libpng.sym
735
737
        -rm -rf .libs _libs
736
738
 
737
739
distclean-libtool:
738
 
        -rm -f libtool
 
740
        -rm -f libtool config.lt
739
741
install-man3: $(man3_MANS) $(man_MANS)
740
742
        @$(NORMAL_INSTALL)
741
743
        test -z "$(man3dir)" || $(MKDIR_P) "$(DESTDIR)$(man3dir)"
747
749
          esac; \
748
750
        done; \
749
751
        for i in $$list; do \
750
 
          if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
751
 
          else file=$$i; fi; \
 
752
          if test -f $$i; then file=$$i; \
 
753
          else file=$(srcdir)/$$i; fi; \
752
754
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
753
755
          case "$$ext" in \
754
756
            3*) ;; \
792
794
          esac; \
793
795
        done; \
794
796
        for i in $$list; do \
795
 
          if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
796
 
          else file=$$i; fi; \
 
797
          if test -f $$i; then file=$$i; \
 
798
          else file=$(srcdir)/$$i; fi; \
797
799
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
798
800
          case "$$ext" in \
799
801
            5*) ;; \
866
868
        unique=`for i in $$list; do \
867
869
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
868
870
          done | \
869
 
          $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
 
871
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
870
872
              END { if (nonempty) { for (i in files) print i; }; }'`; \
871
873
        mkid -fID $$unique
872
874
tags: TAGS
909
911
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
910
912
 
911
913
check-TESTS: $(TESTS)
912
 
        @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[        ]'; \
 
914
        @failed=0; all=0; xfail=0; xpass=0; skip=0; \
913
915
        srcdir=$(srcdir); export srcdir; \
914
916
        list=' $(TESTS) '; \
915
917
        if test -n "$$list"; then \
920
922
            if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
921
923
              all=`expr $$all + 1`; \
922
924
              case " $(XFAIL_TESTS) " in \
923
 
              *$$ws$$tst$$ws*) \
 
925
              *[\ \     ]$$tst[\ \      ]*) \
924
926
                xpass=`expr $$xpass + 1`; \
925
927
                failed=`expr $$failed + 1`; \
926
928
                echo "XPASS: $$tst"; \
932
934
            elif test $$? -ne 77; then \
933
935
              all=`expr $$all + 1`; \
934
936
              case " $(XFAIL_TESTS) " in \
935
 
              *$$ws$$tst$$ws*) \
 
937
              *[\ \     ]$$tst[\ \      ]*) \
936
938
                xfail=`expr $$xfail + 1`; \
937
939
                echo "XFAIL: $$tst"; \
938
940
              ;; \
946
948
              echo "SKIP: $$tst"; \
947
949
            fi; \
948
950
          done; \
 
951
          if test "$$all" -eq 1; then \
 
952
            tests="test"; \
 
953
            All=""; \
 
954
          else \
 
955
            tests="tests"; \
 
956
            All="All "; \
 
957
          fi; \
949
958
          if test "$$failed" -eq 0; then \
950
959
            if test "$$xfail" -eq 0; then \
951
 
              banner="All $$all tests passed"; \
 
960
              banner="$$All$$all $$tests passed"; \
952
961
            else \
953
 
              banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
 
962
              if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
 
963
              banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
954
964
            fi; \
955
965
          else \
956
966
            if test "$$xpass" -eq 0; then \
957
 
              banner="$$failed of $$all tests failed"; \
 
967
              banner="$$failed of $$all $$tests failed"; \
958
968
            else \
959
 
              banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
 
969
              if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
 
970
              banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
960
971
            fi; \
961
972
          fi; \
962
973
          dashes="$$banner"; \
963
974
          skipped=""; \
964
975
          if test "$$skip" -ne 0; then \
965
 
            skipped="($$skip tests were not run)"; \
 
976
            if test "$$skip" -eq 1; then \
 
977
              skipped="($$skip test was not run)"; \
 
978
            else \
 
979
              skipped="($$skip tests were not run)"; \
 
980
            fi; \
966
981
            test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
967
982
              dashes="$$skipped"; \
968
983
          fi; \
1278
1293
install-data-hook:
1279
1294
        cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h
1280
1295
        cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/png.h png.h
1281
 
        cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pngconf.h pngconf.h
 
1296
        cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pngconf.h \
 
1297
                pngconf.h
1282
1298
        cd $(DESTDIR)$(pkgconfigdir); rm -f libpng.pc
1283
1299
        cd $(DESTDIR)$(pkgconfigdir); $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc
1284
1300