Glenn Randers-Pehrson | 6c3d5bd | 2016-02-22 16:38:10 -0600 | [diff] [blame] | 1 | # Makefile.am, the source file for Makefile.in (and hence Makefile), is |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 2 | # |
Cosmin Truta | 94429a3 | 2018-09-04 00:58:55 -0400 | [diff] [blame] | 3 | # Copyright (c) 2018 Cosmin Truta |
Glenn Randers-Pehrson | 93b3476 | 2017-01-03 22:18:22 -0600 | [diff] [blame] | 4 | # Copyright (c) 2004-2016 Glenn Randers-Pehrson |
Glenn Randers-Pehrson | 6c3d5bd | 2016-02-22 16:38:10 -0600 | [diff] [blame] | 5 | # |
| 6 | # This code is released under the libpng license. |
| 7 | # For conditions of distribution and use, see the disclaimer |
| 8 | # and license in png.h |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 9 | |
Glenn Randers-Pehrson | a7dbcba | 2007-05-15 16:16:34 -0500 | [diff] [blame] | 10 | PNGLIB_BASENAME= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 11 | |
John Bowler | a23f3db | 2012-01-27 10:24:21 -0600 | [diff] [blame] | 12 | ACLOCAL_AMFLAGS = -I scripts |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 13 | |
| 14 | # test programs - run on make check, make distcheck |
Glenn Randers-Pehrson | 39df0ce | 2016-08-13 21:23:42 -0500 | [diff] [blame] | 15 | check_PROGRAMS= pngtest pngunknown pngstest pngvalid pngimage pngcp |
Glenn Randers-Pehrson | d6e5a72 | 2016-05-17 18:35:59 -0500 | [diff] [blame] | 16 | if HAVE_CLOCK_GETTIME |
| 17 | check_PROGRAMS += timepng |
| 18 | endif |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 19 | |
John Bowler | 0c7ac06 | 2013-05-07 21:59:05 -0500 | [diff] [blame] | 20 | # Utilities - installed |
Glenn Randers-Pehrson | 39df0ce | 2016-08-13 21:23:42 -0500 | [diff] [blame] | 21 | bin_PROGRAMS= pngfix png-fix-itxt |
John Bowler | 0c7ac06 | 2013-05-07 21:59:05 -0500 | [diff] [blame] | 22 | |
John Bowler | 940b37b | 2013-10-04 19:56:19 -0500 | [diff] [blame] | 23 | # This ensures that pnglibconf.h gets built at the start of 'make all' or |
| 24 | # 'make check', but it does not add dependencies to the individual programs, |
| 25 | # this is done below. |
| 26 | # |
| 27 | # IMPORTANT: always add the object modules of new programs to the list below |
| 28 | # because otherwise the sequence 'configure; make new-program' will *sometimes* |
| 29 | # result in the installed (system) pnglibconf.h being used and the result is |
| 30 | # always wrong and always very confusing. |
| 31 | BUILT_SOURCES = pnglibconf.h |
| 32 | |
Glenn Randers-Pehrson | 917648e | 2004-12-02 18:14:51 -0600 | [diff] [blame] | 33 | pngtest_SOURCES = pngtest.c |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 34 | pngtest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la |
Glenn Randers-Pehrson | e0bcbfd | 2011-11-16 23:03:52 -0600 | [diff] [blame] | 35 | |
Glenn Randers-Pehrson | 5b79cd5 | 2011-11-24 10:56:20 -0600 | [diff] [blame] | 36 | pngvalid_SOURCES = contrib/libtests/pngvalid.c |
Glenn Randers-Pehrson | f3af706 | 2012-02-02 23:11:45 -0600 | [diff] [blame] | 37 | pngvalid_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 38 | |
| 39 | pngstest_SOURCES = contrib/libtests/pngstest.c |
John Bowler | ed9f844 | 2011-11-16 11:52:27 -0600 | [diff] [blame] | 40 | pngstest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 41 | |
| 42 | pngunknown_SOURCES = contrib/libtests/pngunknown.c |
| 43 | pngunknown_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la |
| 44 | |
John Bowler | 414d7b5 | 2014-02-06 11:32:57 -0600 | [diff] [blame] | 45 | pngimage_SOURCES = contrib/libtests/pngimage.c |
| 46 | pngimage_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la |
| 47 | |
Glenn Randers-Pehrson | d6e5a72 | 2016-05-17 18:35:59 -0500 | [diff] [blame] | 48 | timepng_SOURCES = contrib/libtests/timepng.c |
| 49 | timepng_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la |
| 50 | |
Glenn Randers-Pehrson | d992e05 | 2013-06-27 13:39:20 -0500 | [diff] [blame] | 51 | pngfix_SOURCES = contrib/tools/pngfix.c |
| 52 | pngfix_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la |
John Bowler | 0c7ac06 | 2013-05-07 21:59:05 -0500 | [diff] [blame] | 53 | |
Glenn Randers-Pehrson | ff141eb | 2013-05-08 19:46:10 -0500 | [diff] [blame] | 54 | png_fix_itxt_SOURCES = contrib/tools/png-fix-itxt.c |
John Bowler | 0c7ac06 | 2013-05-07 21:59:05 -0500 | [diff] [blame] | 55 | |
John Bowler | 0ac91cc | 2016-06-28 19:18:09 -0700 | [diff] [blame] | 56 | pngcp_SOURCES = contrib/tools/pngcp.c |
| 57 | pngcp_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la |
| 58 | |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 59 | # Generally these are single line shell scripts to run a test with a particular |
| 60 | # set of parameters: |
| 61 | TESTS =\ |
| 62 | tests/pngtest\ |
Glenn Randers-Pehrson | 3d7f3e5 | 2017-08-04 19:58:05 -0500 | [diff] [blame] | 63 | tests/pngtest-badpngs\ |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 64 | tests/pngvalid-gamma-16-to-8 tests/pngvalid-gamma-alpha-mode\ |
| 65 | tests/pngvalid-gamma-background tests/pngvalid-gamma-expand16-alpha-mode\ |
| 66 | tests/pngvalid-gamma-expand16-background\ |
| 67 | tests/pngvalid-gamma-expand16-transform tests/pngvalid-gamma-sbit\ |
| 68 | tests/pngvalid-gamma-threshold tests/pngvalid-gamma-transform\ |
John Bowler | 23ddeb5 | 2015-09-25 16:43:34 -0700 | [diff] [blame] | 69 | tests/pngvalid-progressive-size\ |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 70 | tests/pngvalid-progressive-interlace-standard\ |
John Bowler | 23ddeb5 | 2015-09-25 16:43:34 -0700 | [diff] [blame] | 71 | tests/pngvalid-transform\ |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 72 | tests/pngvalid-progressive-standard tests/pngvalid-standard\ |
John Bowler | fa5ba2e | 2015-09-25 12:21:10 -0700 | [diff] [blame] | 73 | tests/pngstest-1.8 tests/pngstest-1.8-alpha tests/pngstest-linear\ |
| 74 | tests/pngstest-linear-alpha tests/pngstest-none tests/pngstest-none-alpha\ |
| 75 | tests/pngstest-sRGB tests/pngstest-sRGB-alpha tests/pngunknown-IDAT\ |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 76 | tests/pngunknown-discard tests/pngunknown-if-safe tests/pngunknown-sAPI\ |
John Bowler | 414d7b5 | 2014-02-06 11:32:57 -0600 | [diff] [blame] | 77 | tests/pngunknown-sTER tests/pngunknown-save tests/pngunknown-vpAg\ |
| 78 | tests/pngimage-quick tests/pngimage-full |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 79 | |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 80 | # man pages |
| 81 | dist_man_MANS= libpng.3 libpngpf.3 png.5 |
| 82 | |
| 83 | # generate the -config scripts if required |
Glenn Randers-Pehrson | f3d737d | 2011-05-07 21:41:15 -0500 | [diff] [blame] | 84 | binconfigs= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 85 | EXTRA_SCRIPTS= libpng-config libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 86 | bin_SCRIPTS= @binconfigs@ |
| 87 | |
| 88 | # rules to build libpng, only build the old library on request |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 89 | lib_LTLIBRARIES=libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la |
| 90 | # EXTRA_LTLIBRARIES= libpng.la |
Glenn Randers-Pehrson | f01459f | 2010-07-29 19:42:45 -0500 | [diff] [blame] | 91 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = png.c pngerror.c\ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 92 | pngget.c pngmem.c pngpread.c pngread.c pngrio.c pngrtran.c pngrutil.c\ |
| 93 | pngset.c pngtrans.c pngwio.c pngwrite.c pngwtran.c pngwutil.c\ |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 94 | png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h pngstruct.h pngusr.dfa |
Glenn Randers-Pehrson | d5d6360 | 2006-04-15 06:37:45 -0500 | [diff] [blame] | 95 | |
Glenn Randers-Pehrson | 6d7705e | 2011-11-03 00:42:58 -0500 | [diff] [blame] | 96 | if PNG_ARM_NEON |
John Bowler | d0479d2 | 2013-12-29 19:31:56 -0600 | [diff] [blame] | 97 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES += arm/arm_init.c\ |
Richard Townsend | 7734cda | 2018-01-25 19:03:04 +0000 | [diff] [blame] | 98 | arm/filter_neon.S arm/filter_neon_intrinsics.c \ |
| 99 | arm/palette_neon_intrinsics.c |
Glenn Randers-Pehrson | 063eb1b | 2013-10-14 11:14:36 -0500 | [diff] [blame] | 100 | endif |
Glenn Randers-Pehrson | 6d7705e | 2011-11-03 00:42:58 -0500 | [diff] [blame] | 101 | |
Mandar Sahastrabuddhe | ee5e398 | 2016-08-29 19:07:25 +0530 | [diff] [blame] | 102 | if PNG_MIPS_MSA |
| 103 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES += mips/mips_init.c\ |
| 104 | mips/filter_msa_intrinsics.c |
| 105 | endif |
| 106 | |
Glenn Randers-Pehrson | 8c6c9e6 | 2017-01-05 18:11:59 -0600 | [diff] [blame] | 107 | if PNG_INTEL_SSE |
| 108 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES += intel/intel_init.c\ |
| 109 | intel/filter_sse2_intrinsics.c |
| 110 | endif |
| 111 | |
Vadim Barkov | 2b6e59d | 2017-01-14 16:05:33 +0300 | [diff] [blame] | 112 | if PNG_POWERPC_VSX |
| 113 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES += powerpc/powerpc_init.c\ |
| 114 | powerpc/filter_vsx_intrinsics.c |
| 115 | endif |
| 116 | |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 117 | nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = pnglibconf.h |
| 118 | |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 119 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS = -no-undefined -export-dynamic \ |
| 120 | -version-number @PNGLIB_MAJOR@@PNGLIB_MINOR@:@PNGLIB_RELEASE@:0 |
Glenn Randers-Pehrson | e647462 | 2006-03-04 16:50:47 -0600 | [diff] [blame] | 121 | |
| 122 | if HAVE_LD_VERSION_SCRIPT |
Glenn Randers-Pehrson | 83bd94f | 2011-09-01 14:06:49 -0500 | [diff] [blame] | 123 | # Versioned symbols and restricted exports |
| 124 | if HAVE_SOLARIS_LD |
Glenn Randers-Pehrson | 435cf87 | 2011-10-05 16:23:53 -0500 | [diff] [blame] | 125 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -Wl,-M -Wl,libpng.vers |
Glenn Randers-Pehrson | 83bd94f | 2011-09-01 14:06:49 -0500 | [diff] [blame] | 126 | else |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 127 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -Wl,--version-script=libpng.vers |
Glenn Randers-Pehrson | 83bd94f | 2011-09-01 14:06:49 -0500 | [diff] [blame] | 128 | endif |
| 129 | |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 130 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.vers |
Glenn Randers-Pehrson | e647462 | 2006-03-04 16:50:47 -0600 | [diff] [blame] | 131 | else |
Glenn Randers-Pehrson | 83bd94f | 2011-09-01 14:06:49 -0500 | [diff] [blame] | 132 | # Only restricted exports when possible |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 133 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -export-symbols libpng.sym |
| 134 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.sym |
Glenn Randers-Pehrson | e647462 | 2006-03-04 16:50:47 -0600 | [diff] [blame] | 135 | endif |
Glenn Randers-Pehrson | eb58091 | 2008-07-30 14:47:09 -0500 | [diff] [blame] | 136 | |
Glenn Randers-Pehrson | 917648e | 2004-12-02 18:14:51 -0600 | [diff] [blame] | 137 | #distribute headers in /usr/include/libpng/* |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 138 | pkgincludedir= $(includedir)/$(PNGLIB_BASENAME) |
Glenn Randers-Pehrson | 0b3634b | 2011-12-17 09:57:00 -0600 | [diff] [blame] | 139 | pkginclude_HEADERS= png.h pngconf.h |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 140 | nodist_pkginclude_HEADERS= pnglibconf.h |
Glenn Randers-Pehrson | 917648e | 2004-12-02 18:14:51 -0600 | [diff] [blame] | 141 | |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 142 | # pkg-config stuff, note that libpng.pc is always required in order |
| 143 | # to get the correct library |
| 144 | pkgconfigdir = @pkgconfigdir@ |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 145 | pkgconfig_DATA = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 146 | |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 147 | # Extra source distribution files, '${srcdir}' is used below to stop build files |
| 148 | # from those directories being included. This only works if the configure is |
| 149 | # not done in the source directory! |
Glenn Randers-Pehrson | 7b34df3 | 2006-02-24 06:30:16 -0600 | [diff] [blame] | 150 | EXTRA_DIST= \ |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 151 | ANNOUNCE CHANGES INSTALL LICENSE README TODO \ |
Glenn Randers-Pehrson | 917648e | 2004-12-02 18:14:51 -0600 | [diff] [blame] | 152 | pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \ |
Glenn Randers-Pehrson | b56e0d0 | 2010-04-24 12:10:36 -0500 | [diff] [blame] | 153 | ${srcdir}/contrib ${srcdir}/projects ${srcdir}/scripts \ |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 154 | $(TESTS) $(XFAIL_TESTS) tests/pngstest \ |
Glenn Randers-Pehrson | f3abb2c | 2010-10-17 12:51:53 -0500 | [diff] [blame] | 155 | CMakeLists.txt example.c libpng-manual.txt |
Glenn Randers-Pehrson | 917648e | 2004-12-02 18:14:51 -0600 | [diff] [blame] | 156 | |
Cosmin Truta | 47e1315 | 2015-03-15 17:04:17 -0500 | [diff] [blame] | 157 | SCRIPT_CLEANFILES=scripts/*.out scripts/*.chk |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 158 | |
John Bowler | eb26ee6 | 2011-12-08 09:37:24 -0600 | [diff] [blame] | 159 | CLEANFILES= *.tf? pngout.png libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc \ |
Glenn Randers-Pehrson | c551c0d | 2010-03-16 07:52:34 -0500 | [diff] [blame] | 160 | libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config libpng.vers libpng.sym \ |
Cosmin Truta | 47e1315 | 2015-03-15 17:04:17 -0500 | [diff] [blame] | 161 | check.new pnglibconf.h pngprefix.h symbols.new pngtest-log.txt \ |
Glenn Randers-Pehrson | ea037b0 | 2015-03-21 15:47:39 -0500 | [diff] [blame] | 162 | pnglibconf.out pnglibconf.c pnglibconf.pre pnglibconf.dfn \ |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 163 | $(SCRIPT_CLEANFILES) |
Glenn Randers-Pehrson | 917648e | 2004-12-02 18:14:51 -0600 | [diff] [blame] | 164 | |
Glenn Randers-Pehrson | eb58091 | 2008-07-30 14:47:09 -0500 | [diff] [blame] | 165 | MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \ |
Glenn Randers-Pehrson | c551c0d | 2010-03-16 07:52:34 -0500 | [diff] [blame] | 166 | config.sub configure depcomp install-sh ltmain.sh missing |
Glenn Randers-Pehrson | 3424ee7 | 2006-07-12 13:33:47 -0500 | [diff] [blame] | 167 | |
John Bowler | 1eb2c48 | 2012-01-25 08:07:29 -0600 | [diff] [blame] | 168 | # PNG_COPTS give extra options for the C compiler to be used on all compilation |
| 169 | # steps (unless targe_CFLAGS is specified; that will take precedence over |
| 170 | # AM_CFLAGS) |
| 171 | PNG_COPTS = @PNG_COPTS@ |
| 172 | AM_CFLAGS = ${PNG_COPTS} |
| 173 | |
John Bowler | 71a10f2 | 2011-01-22 17:03:33 -0600 | [diff] [blame] | 174 | # DFNCPP is normally just CPP - the C preprocessor - but on Solaris and maybe |
| 175 | # other operating systems (NeXT?) the C preprocessor selected by configure |
| 176 | # checks input tokens for validity - effectively it performs part of the ANSI-C |
| 177 | # parsing - and therefore fails with the .df files. configure.ac has special |
| 178 | # checks for this and sets DFNCPP appropriately. |
| 179 | DFNCPP = @DFNCPP@ |
| 180 | |
John Bowler | d040886 | 2014-12-14 18:49:53 -0600 | [diff] [blame] | 181 | SUFFIXES = .chk .out |
Glenn Randers-Pehrson | 7e59791 | 2010-03-17 07:29:42 -0500 | [diff] [blame] | 182 | |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 183 | $(PNGLIB_BASENAME).pc: libpng.pc |
| 184 | cp libpng.pc $@ |
Glenn Randers-Pehrson | 917648e | 2004-12-02 18:14:51 -0600 | [diff] [blame] | 185 | |
Glenn Randers-Pehrson | c3d51c1 | 2006-03-02 07:23:18 -0600 | [diff] [blame] | 186 | $(PNGLIB_BASENAME)-config: libpng-config |
| 187 | cp libpng-config $@ |
Glenn Randers-Pehrson | 917648e | 2004-12-02 18:14:51 -0600 | [diff] [blame] | 188 | |
Glenn Randers-Pehrson | 0b3634b | 2011-12-17 09:57:00 -0600 | [diff] [blame] | 189 | scripts/sym.out scripts/vers.out: png.h pngconf.h pnglibconf.h |
John Bowler | 42369cc | 2012-01-31 07:28:13 -0600 | [diff] [blame] | 190 | scripts/prefix.out: png.h pngconf.h pnglibconf.out |
Glenn Randers-Pehrson | 0b3634b | 2011-12-17 09:57:00 -0600 | [diff] [blame] | 191 | scripts/symbols.out: png.h pngconf.h $(srcdir)/scripts/pnglibconf.h.prebuilt |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 192 | scripts/intprefix.out: pnglibconf.h |
Glenn Randers-Pehrson | 7e59791 | 2010-03-17 07:29:42 -0500 | [diff] [blame] | 193 | |
| 194 | libpng.sym: scripts/sym.out |
| 195 | rm -f $@ |
| 196 | cp $? $@ |
| 197 | libpng.vers: scripts/vers.out |
| 198 | rm -f $@ |
| 199 | cp $? $@ |
John Bowler | 42369cc | 2012-01-31 07:28:13 -0600 | [diff] [blame] | 200 | |
John Bowler | 516c9c9 | 2012-02-01 07:14:24 -0600 | [diff] [blame] | 201 | if DO_PNG_PREFIX |
John Bowler | 42369cc | 2012-01-31 07:28:13 -0600 | [diff] [blame] | 202 | # Rename functions in scripts/prefix.out with a PNG_PREFIX prefix. |
| 203 | # Rename macros in scripts/macro.lst from PNG_PREFIXpng_ to PNG_ (the actual |
| 204 | # implementation of the macro). |
| 205 | pnglibconf.h: pnglibconf.out scripts/prefix.out scripts/macro.lst |
| 206 | rm -f $@ |
| 207 | $(AWK) 's==0 && NR>1{print prev}\ |
| 208 | s==0{prev=$$0}\ |
| 209 | s==1{print "#define", $$1, "@PNG_PREFIX@" $$1}\ |
| 210 | s==2{print "#define @PNG_PREFIX@png_" $$1, "PNG_" $$1}\ |
| 211 | END{print prev}' s=0 pnglibconf.out s=1 scripts/prefix.out\ |
| 212 | s=2 ${srcdir}/scripts/macro.lst >pnglibconf.tf8 |
| 213 | mv pnglibconf.tf8 $@ |
| 214 | |
| 215 | pngprefix.h: scripts/intprefix.out |
| 216 | rm -f pngprefix.tf1 |
| 217 | $(AWK) '{print "#define", $$1, "@PNG_PREFIX@" $$1}' $? >pngprefix.tf1 |
| 218 | mv pngprefix.tf1 $@ |
| 219 | else |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 220 | pnglibconf.h: pnglibconf.out |
| 221 | rm -f $@ |
| 222 | cp $? $@ |
John Bowler | 42369cc | 2012-01-31 07:28:13 -0600 | [diff] [blame] | 223 | |
| 224 | pngprefix.h: # is empty |
| 225 | :>$@ |
| 226 | endif |
| 227 | |
John Bowler | 5a77e67 | 2011-07-14 07:42:11 -0500 | [diff] [blame] | 228 | $(srcdir)/scripts/pnglibconf.h.prebuilt: |
| 229 | @echo "Attempting to build $@" >&2 |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 230 | @echo "This is a machine generated file, but if you want to make" >&2 |
John Bowler | 9afb90f | 2013-05-08 14:21:46 -0500 | [diff] [blame] | 231 | @echo "a new one simply make 'scripts/pnglibconf.out', copy that" >&2 |
| 232 | @echo "AND set PNG_ZLIB_VERNUM to 0 (you MUST do this)" >&2 |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 233 | @exit 1 |
Glenn Randers-Pehrson | e647462 | 2006-03-04 16:50:47 -0600 | [diff] [blame] | 234 | |
Glenn Randers-Pehrson | 2be8b64 | 2010-07-29 19:09:18 -0500 | [diff] [blame] | 235 | # The following is necessary to ensure that the local pnglibconf.h is used, not |
| 236 | # an installed one (this can happen immediately after on a clean system if |
John Bowler | 940b37b | 2013-10-04 19:56:19 -0500 | [diff] [blame] | 237 | # 'make test' is the first thing the user does.) Only files which include |
| 238 | # one of the png source files (typically png.h or pngpriv.h) need to be listed |
| 239 | # here: |
| 240 | pngtest.o: pnglibconf.h |
| 241 | |
| 242 | contrib/libtests/makepng.o: pnglibconf.h |
| 243 | contrib/libtests/pngstest.o: pnglibconf.h |
| 244 | contrib/libtests/pngunknown.o: pnglibconf.h |
John Bowler | 414d7b5 | 2014-02-06 11:32:57 -0600 | [diff] [blame] | 245 | contrib/libtests/pngimage.o: pnglibconf.h |
John Bowler | 940b37b | 2013-10-04 19:56:19 -0500 | [diff] [blame] | 246 | contrib/libtests/pngvalid.o: pnglibconf.h |
| 247 | contrib/libtests/readpng.o: pnglibconf.h |
| 248 | contrib/libtests/tarith.o: pnglibconf.h |
Glenn Randers-Pehrson | d6e5a72 | 2016-05-17 18:35:59 -0500 | [diff] [blame] | 249 | contrib/libtests/timepng.o: pnglibconf.h |
John Bowler | 940b37b | 2013-10-04 19:56:19 -0500 | [diff] [blame] | 250 | |
| 251 | contrib/tools/makesRGB.o: pnglibconf.h |
| 252 | contrib/tools/pngfix.o: pnglibconf.h |
John Bowler | 0ac91cc | 2016-06-28 19:18:09 -0700 | [diff] [blame] | 253 | contrib/tools/pngcp.o: pnglibconf.h |
Glenn Randers-Pehrson | 2be8b64 | 2010-07-29 19:09:18 -0500 | [diff] [blame] | 254 | |
Glenn Randers-Pehrson | 0012e9c | 2011-01-26 22:04:03 -0600 | [diff] [blame] | 255 | # We must use -DPNG_NO_USE_READ_MACROS here even when the library may actually |
Glenn Randers-Pehrson | 83bd94f | 2011-09-01 14:06:49 -0500 | [diff] [blame] | 256 | # be built with PNG_USE_READ_MACROS; this prevents the read macros from |
| 257 | # interfering with the symbol file format. |
Glenn Randers-Pehrson | a528fba | 2010-03-12 21:03:18 -0600 | [diff] [blame] | 258 | SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0'\ |
| 259 | -DPNGLIB_VERSION='@PNGLIB_VERSION@'\ |
John Bowler | f21a0d0 | 2011-01-23 23:55:19 -0600 | [diff] [blame] | 260 | -DSYMBOL_PREFIX='$(SYMBOL_PREFIX)'\ |
Glenn Randers-Pehrson | 80de04e | 2011-03-24 23:06:26 -0500 | [diff] [blame] | 261 | -DPNG_NO_USE_READ_MACROS -DPNG_BUILDING_SYMBOL_TABLE |
Glenn Randers-Pehrson | a528fba | 2010-03-12 21:03:18 -0600 | [diff] [blame] | 262 | |
John Bowler | 516c9c9 | 2012-02-01 07:14:24 -0600 | [diff] [blame] | 263 | if DO_PNG_PREFIX |
John Bowler | 42369cc | 2012-01-31 07:28:13 -0600 | [diff] [blame] | 264 | SYMBOL_CFLAGS += -DPNG_PREFIX='@PNG_PREFIX@' |
| 265 | endif |
| 266 | |
John Bowler | d040886 | 2014-12-14 18:49:53 -0600 | [diff] [blame] | 267 | .c.out: |
| 268 | rm -f $@ $*.tf[12] |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 269 | test -d scripts || mkdir scripts || test -d scripts |
John Bowler | ba6fbc5 | 2011-12-17 14:21:54 -0600 | [diff] [blame] | 270 | $(DFNCPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES)\ |
John Bowler | d040886 | 2014-12-14 18:49:53 -0600 | [diff] [blame] | 271 | $(CPPFLAGS) $(SYMBOL_CFLAGS) $< > $*.tf1 |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 272 | $(AWK) -f "${srcdir}/scripts/dfn.awk" out="$*.tf2" $*.tf1 1>&2 |
John Bowler | d040886 | 2014-12-14 18:49:53 -0600 | [diff] [blame] | 273 | rm -f $*.tf1 |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 274 | mv $*.tf2 $@ |
Glenn Randers-Pehrson | e647462 | 2006-03-04 16:50:47 -0600 | [diff] [blame] | 275 | |
John Bowler | d040886 | 2014-12-14 18:49:53 -0600 | [diff] [blame] | 276 | # The .c file for pnglibconf.h is machine generated |
| 277 | pnglibconf.c: scripts/pnglibconf.dfa scripts/options.awk pngconf.h pngusr.dfa $(DFA_XTRA) |
John Bowler | eb26ee6 | 2011-12-08 09:37:24 -0600 | [diff] [blame] | 278 | rm -f $@ $*.tf[45] |
| 279 | $(AWK) -f ${srcdir}/scripts/options.awk out=$*.tf4 version=search\ |
John Bowler | d497383 | 2011-11-08 19:34:54 -0600 | [diff] [blame] | 280 | ${srcdir}/pngconf.h ${srcdir}/scripts/pnglibconf.dfa\ |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 281 | ${srcdir}/pngusr.dfa $(DFA_XTRA) 1>&2 |
John Bowler | eb26ee6 | 2011-12-08 09:37:24 -0600 | [diff] [blame] | 282 | $(AWK) -f ${srcdir}/scripts/options.awk out=$*.tf5 $*.tf4 1>&2 |
| 283 | rm $*.tf4 |
| 284 | mv $*.tf5 $@ |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 285 | |
| 286 | # Symbol checks (.def and .out files should match) |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 287 | scripts/symbols.chk: scripts/checksym.awk scripts/symbols.def scripts/symbols.out |
John Bowler | eb26ee6 | 2011-12-08 09:37:24 -0600 | [diff] [blame] | 288 | |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 289 | .out.chk: |
John Bowler | eb26ee6 | 2011-12-08 09:37:24 -0600 | [diff] [blame] | 290 | rm -f $@ $*.new |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 291 | $(AWK) -f ${srcdir}/scripts/checksym.awk ${srcdir}/scripts/${*F}.def\ |
John Bowler | eb26ee6 | 2011-12-08 09:37:24 -0600 | [diff] [blame] | 292 | of="$*.new" $< >&2 |
| 293 | mv $*.new $@ |
Glenn Randers-Pehrson | c551c0d | 2010-03-16 07:52:34 -0500 | [diff] [blame] | 294 | |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 295 | # used on demand to regenerate the standard header, CPPFLAGS should |
| 296 | # be empty - no non-standard defines |
John Bowler | d040886 | 2014-12-14 18:49:53 -0600 | [diff] [blame] | 297 | scripts/pnglibconf.c: scripts/pnglibconf.dfa scripts/options.awk pngconf.h |
John Bowler | eb26ee6 | 2011-12-08 09:37:24 -0600 | [diff] [blame] | 298 | rm -f $@ pnglibconf.tf[67] |
Glenn Randers-Pehrson | f3d737d | 2011-05-07 21:41:15 -0500 | [diff] [blame] | 299 | test -z "$(CPPFLAGS)" |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 300 | echo "com @PNGLIB_VERSION@ STANDARD API DEFINITION" |\ |
John Bowler | eb26ee6 | 2011-12-08 09:37:24 -0600 | [diff] [blame] | 301 | $(AWK) -f ${srcdir}/scripts/options.awk out=pnglibconf.tf6\ |
| 302 | logunsupported=1 version=search ${srcdir}/pngconf.h -\ |
| 303 | ${srcdir}/scripts/pnglibconf.dfa 1>&2 |
| 304 | $(AWK) -f ${srcdir}/scripts/options.awk out=pnglibconf.tf7\ |
| 305 | pnglibconf.tf6 1>&2 |
| 306 | rm pnglibconf.tf6 |
| 307 | mv pnglibconf.tf7 $@ |
Glenn Randers-Pehrson | c551c0d | 2010-03-16 07:52:34 -0500 | [diff] [blame] | 308 | |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 309 | $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS): png.h pngconf.h \ |
John Bowler | 42369cc | 2012-01-31 07:28:13 -0600 | [diff] [blame] | 310 | pnglibconf.h pngpriv.h pngdebug.h pnginfo.h pngstruct.h pngprefix.h |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 311 | |
| 312 | test: check-am |
| 313 | |
| 314 | # Extra checks |
John Bowler | e06092a | 2010-12-27 22:10:19 -0600 | [diff] [blame] | 315 | check: scripts/symbols.chk |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 316 | |
| 317 | # Don't distribute the generated script files |
| 318 | dist-hook: |
| 319 | cd '$(top_distdir)'; rm -f $(SCRIPT_CLEANFILES) |
Glenn Randers-Pehrson | eb58091 | 2008-07-30 14:47:09 -0500 | [diff] [blame] | 320 | |
John Bowler | d0479d2 | 2013-12-29 19:31:56 -0600 | [diff] [blame] | 321 | # Make links between installed files with release-specific names and the generic |
| 322 | # file names. If this install rule is run the generic names will be deleted and |
| 323 | # recreated - this has obvious issues for systems with multiple installations. |
Glenn Randers-Pehrson | 917648e | 2004-12-02 18:14:51 -0600 | [diff] [blame] | 324 | |
John Bowler | d0479d2 | 2013-12-29 19:31:56 -0600 | [diff] [blame] | 325 | install-header-links: |
| 326 | @set -ex; cd '$(DESTDIR)$(includedir)'; for f in $(HEADERS); do \ |
| 327 | rm -f "$$f"; $(LN_S) "$(PNGLIB_BASENAME)/$$f" "$$f"; done |
| 328 | |
| 329 | uninstall-header-links: |
| 330 | cd '$(DESTDIR)$(includedir)'; rm -f $(HEADERS) |
| 331 | |
| 332 | install-libpng-pc: |
| 333 | @set -ex; cd '$(DESTDIR)$(pkgconfigdir)'; rm -f libpng.pc; \ |
| 334 | $(LN_S) '$(PNGLIB_BASENAME).pc' libpng.pc |
| 335 | |
| 336 | uninstall-libpng-pc: |
| 337 | rm -f '$(DESTDIR)$(pkgconfigdir)/libpng.pc' |
| 338 | |
| 339 | # EXT_LIST is a list of the possibly library directory extensions, this exists |
| 340 | # because we can't find a good way of discovering the file extensions that are |
| 341 | # actually installed on a given system, so instead we check for every extension |
| 342 | # we have seen. |
| 343 | |
| 344 | EXT_LIST = a dll.a so so.@PNGLIB_MAJOR@@PNGLIB_MINOR@.@PNGLIB_RELEASE@ la sl dylib |
| 345 | |
| 346 | install-library-links: |
| 347 | @set -x; cd '$(DESTDIR)$(libdir)';\ |
| 348 | for ext in $(EXT_LIST); do\ |
| 349 | rm -f "libpng.$$ext";\ |
| 350 | if test -f "$(PNGLIB_BASENAME).$$ext"; then\ |
| 351 | $(LN_S) "$(PNGLIB_BASENAME).$$ext" "libpng.$$ext" || exit 1;\ |
| 352 | fi;\ |
Glenn Randers-Pehrson | d60b8fa | 2006-04-20 21:31:14 -0500 | [diff] [blame] | 353 | done |
Glenn Randers-Pehrson | e647462 | 2006-03-04 16:50:47 -0600 | [diff] [blame] | 354 | |
John Bowler | d0479d2 | 2013-12-29 19:31:56 -0600 | [diff] [blame] | 355 | uninstall-library-links: |
| 356 | @set -x; cd '$(DESTDIR)$(libdir)'; for ext in $(EXT_LIST); do\ |
| 357 | rm -f "libpng.$$ext"; done |
| 358 | |
| 359 | install-libpng-config: |
| 360 | @set -ex; cd '$(DESTDIR)$(bindir)'; rm -f libpng-config; \ |
| 361 | $(LN_S) '$(PNGLIB_BASENAME)-config' libpng-config |
| 362 | |
| 363 | uninstall-libpng-config: |
Glenn Randers-Pehrson | 871b1d0 | 2013-03-02 14:58:22 -0600 | [diff] [blame] | 364 | rm -f '$(DESTDIR)$(bindir)/libpng-config' |
John Bowler | d0479d2 | 2013-12-29 19:31:56 -0600 | [diff] [blame] | 365 | |
| 366 | if DO_INSTALL_LINKS |
| 367 | # If --enable-unversioned-links is specified the header and lib file links |
| 368 | # will be automatically made on a 'make install': |
| 369 | |
| 370 | install-data-hook: install-header-links |
| 371 | uninstall-hook: uninstall-header-links |
| 372 | install-exec-hook: install-library-links |
| 373 | uninstall-hook: uninstall-library-links |
| 374 | endif |
| 375 | |
| 376 | if DO_INSTALL_LIBPNG_PC |
| 377 | # Likewise, --install-pc causes libpng.pc to be constructed: |
| 378 | |
| 379 | install-data-hook: install-libpng-pc |
| 380 | uninstall-hook: uninstall-libpng-pc |
| 381 | endif |
| 382 | |
| 383 | if DO_INSTALL_LIBPNG_CONFIG |
| 384 | # And --install-config: |
| 385 | |
| 386 | install-exec-hook: install-libpng-config |
| 387 | uninstall-hook: uninstall-libpng-config |
| 388 | endif |
John Bowler | 9e9977e | 2013-10-17 08:23:13 -0500 | [diff] [blame] | 389 | |
| 390 | # The following addition ensures that 'make all' always builds the test programs |
| 391 | # too. It used to, but some change either in libpng or configure stopped this |
| 392 | # working. |
| 393 | all-am: $(check_PROGRAMS) |