blob: e69519d71cc7618bbc9c6ca607ee969a9b7a7ef3 [file] [log] [blame]
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -06001# Makefile.am:
2# Source file for Makefile.in (and hence Makefile)
3#
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -06004
Glenn Randers-Pehrsona7dbcba2007-05-15 16:16:34 -05005PNGLIB_BASENAME= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -06006
John Bowlera23f3db2012-01-27 10:24:21 -06007ACLOCAL_AMFLAGS = -I scripts
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -06008
9# test programs - run on make check, make distcheck
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060010check_PROGRAMS= pngtest pngunknown pngstest pngvalid
11
John Bowler0c7ac062013-05-07 21:59:05 -050012# Utilities - installed
Glenn Randers-Pehrsond992e052013-06-27 13:39:20 -050013bin_PROGRAMS= pngfix png-fix-itxt
John Bowler0c7ac062013-05-07 21:59:05 -050014
John Bowler940b37b2013-10-04 19:56:19 -050015# This ensures that pnglibconf.h gets built at the start of 'make all' or
16# 'make check', but it does not add dependencies to the individual programs,
17# this is done below.
18#
19# IMPORTANT: always add the object modules of new programs to the list below
20# because otherwise the sequence 'configure; make new-program' will *sometimes*
21# result in the installed (system) pnglibconf.h being used and the result is
22# always wrong and always very confusing.
23BUILT_SOURCES = pnglibconf.h
24
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -060025pngtest_SOURCES = pngtest.c
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060026pngtest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
Glenn Randers-Pehrsone0bcbfd2011-11-16 23:03:52 -060027
Glenn Randers-Pehrson5b79cd52011-11-24 10:56:20 -060028pngvalid_SOURCES = contrib/libtests/pngvalid.c
Glenn Randers-Pehrsonf3af7062012-02-02 23:11:45 -060029pngvalid_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060030
31pngstest_SOURCES = contrib/libtests/pngstest.c
John Bowlered9f8442011-11-16 11:52:27 -060032pngstest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060033
34pngunknown_SOURCES = contrib/libtests/pngunknown.c
35pngunknown_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
36
Glenn Randers-Pehrsond992e052013-06-27 13:39:20 -050037pngfix_SOURCES = contrib/tools/pngfix.c
38pngfix_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
John Bowler0c7ac062013-05-07 21:59:05 -050039
Glenn Randers-Pehrsonff141eb2013-05-08 19:46:10 -050040png_fix_itxt_SOURCES = contrib/tools/png-fix-itxt.c
John Bowler0c7ac062013-05-07 21:59:05 -050041
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060042# Generally these are single line shell scripts to run a test with a particular
43# set of parameters:
44TESTS =\
45 tests/pngtest\
46 tests/pngvalid-gamma-16-to-8 tests/pngvalid-gamma-alpha-mode\
47 tests/pngvalid-gamma-background tests/pngvalid-gamma-expand16-alpha-mode\
48 tests/pngvalid-gamma-expand16-background\
49 tests/pngvalid-gamma-expand16-transform tests/pngvalid-gamma-sbit\
50 tests/pngvalid-gamma-threshold tests/pngvalid-gamma-transform\
51 tests/pngvalid-progressive-interlace-size\
52 tests/pngvalid-progressive-interlace-standard\
53 tests/pngvalid-progressive-interlace-transform\
54 tests/pngvalid-progressive-standard tests/pngvalid-standard\
55 tests/pngstest-0g01 tests/pngstest-0g02 tests/pngstest-0g04\
56 tests/pngstest-0g08 tests/pngstest-0g16 tests/pngstest-2c08\
57 tests/pngstest-2c16 tests/pngstest-3p01 tests/pngstest-3p02\
58 tests/pngstest-3p04 tests/pngstest-3p08 tests/pngstest-4a08\
59 tests/pngstest-4a16 tests/pngstest-6a08 tests/pngstest-6a16\
60 tests/pngstest-error tests/pngunknown-IDAT\
61 tests/pngunknown-discard tests/pngunknown-if-safe tests/pngunknown-sAPI\
62 tests/pngunknown-sTER tests/pngunknown-save tests/pngunknown-vpAg
63
64# These tests are expected, and required, to fail:
65XFAIL_TESTS = tests/pngstest-error
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -060066
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -060067# man pages
68dist_man_MANS= libpng.3 libpngpf.3 png.5
69
70# generate the -config scripts if required
Glenn Randers-Pehrsonf3d737d2011-05-07 21:41:15 -050071binconfigs= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060072EXTRA_SCRIPTS= libpng-config libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -060073bin_SCRIPTS= @binconfigs@
74
75# rules to build libpng, only build the old library on request
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060076lib_LTLIBRARIES=libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
77# EXTRA_LTLIBRARIES= libpng.la
Glenn Randers-Pehrsonf01459f2010-07-29 19:42:45 -050078libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = png.c pngerror.c\
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050079 pngget.c pngmem.c pngpread.c pngread.c pngrio.c pngrtran.c pngrutil.c\
80 pngset.c pngtrans.c pngwio.c pngwrite.c pngwtran.c pngwutil.c\
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060081 png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h pngstruct.h pngusr.dfa
Glenn Randers-Pehrsond5d63602006-04-15 06:37:45 -050082
Glenn Randers-Pehrson6d7705e2011-11-03 00:42:58 -050083if PNG_ARM_NEON
John Bowlerd0479d22013-12-29 19:31:56 -060084libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES += arm/arm_init.c\
John Bowler83a841a2013-10-15 21:19:56 -050085 arm/filter_neon.S arm/filter_neon_intrinsics.c
Glenn Randers-Pehrson063eb1b2013-10-14 11:14:36 -050086endif
Glenn Randers-Pehrson6d7705e2011-11-03 00:42:58 -050087
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -050088nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = pnglibconf.h
89
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060090libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS = -no-undefined -export-dynamic \
91 -version-number @PNGLIB_MAJOR@@PNGLIB_MINOR@:@PNGLIB_RELEASE@:0
Glenn Randers-Pehrsone6474622006-03-04 16:50:47 -060092
93if HAVE_LD_VERSION_SCRIPT
Glenn Randers-Pehrson83bd94f2011-09-01 14:06:49 -050094# Versioned symbols and restricted exports
95if HAVE_SOLARIS_LD
Glenn Randers-Pehrson435cf872011-10-05 16:23:53 -050096 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -Wl,-M -Wl,libpng.vers
Glenn Randers-Pehrson83bd94f2011-09-01 14:06:49 -050097else
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060098 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -Wl,--version-script=libpng.vers
Glenn Randers-Pehrson83bd94f2011-09-01 14:06:49 -050099endif
100
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600101 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.vers
Glenn Randers-Pehrsone6474622006-03-04 16:50:47 -0600102else
Glenn Randers-Pehrson83bd94f2011-09-01 14:06:49 -0500103# Only restricted exports when possible
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600104 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -export-symbols libpng.sym
105 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.sym
Glenn Randers-Pehrsone6474622006-03-04 16:50:47 -0600106endif
Glenn Randers-Pehrsoneb580912008-07-30 14:47:09 -0500107
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -0600108#distribute headers in /usr/include/libpng/*
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600109pkgincludedir= $(includedir)/$(PNGLIB_BASENAME)
Glenn Randers-Pehrson0b3634b2011-12-17 09:57:00 -0600110pkginclude_HEADERS= png.h pngconf.h
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500111nodist_pkginclude_HEADERS= pnglibconf.h
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -0600112
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600113# pkg-config stuff, note that libpng.pc is always required in order
114# to get the correct library
115pkgconfigdir = @pkgconfigdir@
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600116pkgconfig_DATA = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600117
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600118# Extra source distribution files, '${srcdir}' is used below to stop build files
119# from those directories being included. This only works if the configure is
120# not done in the source directory!
Glenn Randers-Pehrson7b34df32006-02-24 06:30:16 -0600121EXTRA_DIST= \
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600122 ANNOUNCE CHANGES INSTALL LICENSE README TODO \
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -0600123 pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
Glenn Randers-Pehrsonb56e0d02010-04-24 12:10:36 -0500124 ${srcdir}/contrib ${srcdir}/projects ${srcdir}/scripts \
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600125 $(TESTS) $(XFAIL_TESTS) tests/pngstest \
Glenn Randers-Pehrsonf3abb2c2010-10-17 12:51:53 -0500126 CMakeLists.txt example.c libpng-manual.txt
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -0600127
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500128SCRIPT_CLEANFILES=scripts/*.out scripts/*.chk scripts/pnglibconf.dfn
129
John Bowlereb26ee62011-12-08 09:37:24 -0600130CLEANFILES= *.tf? pngout.png libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc \
Glenn Randers-Pehrsonc551c0d2010-03-16 07:52:34 -0500131 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config libpng.vers libpng.sym \
John Bowler42369cc2012-01-31 07:28:13 -0600132 check.new pnglibconf.* pngprefix.h symbols.new pngtest-log.txt \
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500133 $(SCRIPT_CLEANFILES)
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -0600134
Glenn Randers-Pehrsoneb580912008-07-30 14:47:09 -0500135MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
Glenn Randers-Pehrsonc551c0d2010-03-16 07:52:34 -0500136config.sub configure depcomp install-sh ltmain.sh missing
Glenn Randers-Pehrson3424ee72006-07-12 13:33:47 -0500137
John Bowler1eb2c482012-01-25 08:07:29 -0600138# PNG_COPTS give extra options for the C compiler to be used on all compilation
139# steps (unless targe_CFLAGS is specified; that will take precedence over
140# AM_CFLAGS)
141PNG_COPTS = @PNG_COPTS@
142AM_CFLAGS = ${PNG_COPTS}
143
John Bowler71a10f22011-01-22 17:03:33 -0600144# DFNCPP is normally just CPP - the C preprocessor - but on Solaris and maybe
145# other operating systems (NeXT?) the C preprocessor selected by configure
146# checks input tokens for validity - effectively it performs part of the ANSI-C
147# parsing - and therefore fails with the .df files. configure.ac has special
148# checks for this and sets DFNCPP appropriately.
149DFNCPP = @DFNCPP@
150
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500151SUFFIXES = .chk .dfn .out
Glenn Randers-Pehrson7e597912010-03-17 07:29:42 -0500152
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600153$(PNGLIB_BASENAME).pc: libpng.pc
154 cp libpng.pc $@
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -0600155
Glenn Randers-Pehrsonc3d51c12006-03-02 07:23:18 -0600156$(PNGLIB_BASENAME)-config: libpng-config
157 cp libpng-config $@
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -0600158
Glenn Randers-Pehrson0b3634b2011-12-17 09:57:00 -0600159scripts/sym.out scripts/vers.out: png.h pngconf.h pnglibconf.h
John Bowler42369cc2012-01-31 07:28:13 -0600160scripts/prefix.out: png.h pngconf.h pnglibconf.out
Glenn Randers-Pehrson0b3634b2011-12-17 09:57:00 -0600161scripts/symbols.out: png.h pngconf.h $(srcdir)/scripts/pnglibconf.h.prebuilt
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600162scripts/intprefix.out: pnglibconf.h
Glenn Randers-Pehrson7e597912010-03-17 07:29:42 -0500163
164libpng.sym: scripts/sym.out
165 rm -f $@
166 cp $? $@
167libpng.vers: scripts/vers.out
168 rm -f $@
169 cp $? $@
John Bowler42369cc2012-01-31 07:28:13 -0600170
John Bowler516c9c92012-02-01 07:14:24 -0600171if DO_PNG_PREFIX
John Bowler42369cc2012-01-31 07:28:13 -0600172# Rename functions in scripts/prefix.out with a PNG_PREFIX prefix.
173# Rename macros in scripts/macro.lst from PNG_PREFIXpng_ to PNG_ (the actual
174# implementation of the macro).
175pnglibconf.h: pnglibconf.out scripts/prefix.out scripts/macro.lst
176 rm -f $@
177 $(AWK) 's==0 && NR>1{print prev}\
178 s==0{prev=$$0}\
179 s==1{print "#define", $$1, "@PNG_PREFIX@" $$1}\
180 s==2{print "#define @PNG_PREFIX@png_" $$1, "PNG_" $$1}\
181 END{print prev}' s=0 pnglibconf.out s=1 scripts/prefix.out\
182 s=2 ${srcdir}/scripts/macro.lst >pnglibconf.tf8
183 mv pnglibconf.tf8 $@
184
185pngprefix.h: scripts/intprefix.out
186 rm -f pngprefix.tf1
187 $(AWK) '{print "#define", $$1, "@PNG_PREFIX@" $$1}' $? >pngprefix.tf1
188 mv pngprefix.tf1 $@
189else
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500190pnglibconf.h: pnglibconf.out
191 rm -f $@
192 cp $? $@
John Bowler42369cc2012-01-31 07:28:13 -0600193
194pngprefix.h: # is empty
195 :>$@
196endif
197
John Bowler5a77e672011-07-14 07:42:11 -0500198$(srcdir)/scripts/pnglibconf.h.prebuilt:
199 @echo "Attempting to build $@" >&2
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500200 @echo "This is a machine generated file, but if you want to make" >&2
John Bowler9afb90f2013-05-08 14:21:46 -0500201 @echo "a new one simply make 'scripts/pnglibconf.out', copy that" >&2
202 @echo "AND set PNG_ZLIB_VERNUM to 0 (you MUST do this)" >&2
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500203 @exit 1
Glenn Randers-Pehrsone6474622006-03-04 16:50:47 -0600204
Glenn Randers-Pehrson2be8b642010-07-29 19:09:18 -0500205# The following is necessary to ensure that the local pnglibconf.h is used, not
206# an installed one (this can happen immediately after on a clean system if
John Bowler940b37b2013-10-04 19:56:19 -0500207# 'make test' is the first thing the user does.) Only files which include
208# one of the png source files (typically png.h or pngpriv.h) need to be listed
209# here:
210pngtest.o: pnglibconf.h
211
212contrib/libtests/makepng.o: pnglibconf.h
213contrib/libtests/pngstest.o: pnglibconf.h
214contrib/libtests/pngunknown.o: pnglibconf.h
215contrib/libtests/pngvalid.o: pnglibconf.h
216contrib/libtests/readpng.o: pnglibconf.h
217contrib/libtests/tarith.o: pnglibconf.h
218contrib/libtests/timepng.o: pnglibconf.h
219
220contrib/tools/makesRGB.o: pnglibconf.h
221contrib/tools/pngfix.o: pnglibconf.h
Glenn Randers-Pehrson2be8b642010-07-29 19:09:18 -0500222
Glenn Randers-Pehrson0012e9c2011-01-26 22:04:03 -0600223# We must use -DPNG_NO_USE_READ_MACROS here even when the library may actually
Glenn Randers-Pehrson83bd94f2011-09-01 14:06:49 -0500224# be built with PNG_USE_READ_MACROS; this prevents the read macros from
225# interfering with the symbol file format.
Glenn Randers-Pehrsona528fba2010-03-12 21:03:18 -0600226SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0'\
227 -DPNGLIB_VERSION='@PNGLIB_VERSION@'\
John Bowlerf21a0d02011-01-23 23:55:19 -0600228 -DSYMBOL_PREFIX='$(SYMBOL_PREFIX)'\
Glenn Randers-Pehrson80de04e2011-03-24 23:06:26 -0500229 -DPNG_NO_USE_READ_MACROS -DPNG_BUILDING_SYMBOL_TABLE
Glenn Randers-Pehrsona528fba2010-03-12 21:03:18 -0600230
John Bowler516c9c92012-02-01 07:14:24 -0600231if DO_PNG_PREFIX
John Bowler42369cc2012-01-31 07:28:13 -0600232SYMBOL_CFLAGS += -DPNG_PREFIX='@PNG_PREFIX@'
233endif
234
Glenn Randers-Pehrson7e597912010-03-17 07:29:42 -0500235.dfn.out:
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600236 rm -f $@ $*.c $*.tf[12]
237 test -d scripts || mkdir scripts || test -d scripts
John Bowlereb26ee62011-12-08 09:37:24 -0600238 echo '#include "$<"' >$*.c
John Bowlerba6fbc52011-12-17 14:21:54 -0600239 $(DFNCPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES)\
John Bowlereb26ee62011-12-08 09:37:24 -0600240 $(CPPFLAGS) $(SYMBOL_CFLAGS) $*.c > $*.tf1
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600241 $(AWK) -f "${srcdir}/scripts/dfn.awk" out="$*.tf2" $*.tf1 1>&2
242 rm -f $*.c $*.tf1
243 mv $*.tf2 $@
Glenn Randers-Pehrsone6474622006-03-04 16:50:47 -0600244
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500245# The .dfn file for pnglibconf.h is machine generated
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600246pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk pngconf.h pngusr.dfa $(DFA_XTRA)
John Bowlereb26ee62011-12-08 09:37:24 -0600247 rm -f $@ $*.tf[45]
248 $(AWK) -f ${srcdir}/scripts/options.awk out=$*.tf4 version=search\
John Bowlerd4973832011-11-08 19:34:54 -0600249 ${srcdir}/pngconf.h ${srcdir}/scripts/pnglibconf.dfa\
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600250 ${srcdir}/pngusr.dfa $(DFA_XTRA) 1>&2
John Bowlereb26ee62011-12-08 09:37:24 -0600251 $(AWK) -f ${srcdir}/scripts/options.awk out=$*.tf5 $*.tf4 1>&2
252 rm $*.tf4
253 mv $*.tf5 $@
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500254
255# Symbol checks (.def and .out files should match)
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500256scripts/symbols.chk: scripts/checksym.awk scripts/symbols.def scripts/symbols.out
John Bowlereb26ee62011-12-08 09:37:24 -0600257
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500258.out.chk:
John Bowlereb26ee62011-12-08 09:37:24 -0600259 rm -f $@ $*.new
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500260 $(AWK) -f ${srcdir}/scripts/checksym.awk ${srcdir}/scripts/${*F}.def\
John Bowlereb26ee62011-12-08 09:37:24 -0600261 of="$*.new" $< >&2
262 mv $*.new $@
Glenn Randers-Pehrsonc551c0d2010-03-16 07:52:34 -0500263
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500264# used on demand to regenerate the standard header, CPPFLAGS should
265# be empty - no non-standard defines
John Bowlerd4973832011-11-08 19:34:54 -0600266scripts/pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk pngconf.h
John Bowlereb26ee62011-12-08 09:37:24 -0600267 rm -f $@ pnglibconf.tf[67]
Glenn Randers-Pehrsonf3d737d2011-05-07 21:41:15 -0500268 test -z "$(CPPFLAGS)"
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500269 echo "com @PNGLIB_VERSION@ STANDARD API DEFINITION" |\
John Bowlereb26ee62011-12-08 09:37:24 -0600270 $(AWK) -f ${srcdir}/scripts/options.awk out=pnglibconf.tf6\
271 logunsupported=1 version=search ${srcdir}/pngconf.h -\
272 ${srcdir}/scripts/pnglibconf.dfa 1>&2
273 $(AWK) -f ${srcdir}/scripts/options.awk out=pnglibconf.tf7\
274 pnglibconf.tf6 1>&2
275 rm pnglibconf.tf6
276 mv pnglibconf.tf7 $@
Glenn Randers-Pehrsonc551c0d2010-03-16 07:52:34 -0500277
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500278$(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS): png.h pngconf.h \
John Bowler42369cc2012-01-31 07:28:13 -0600279 pnglibconf.h pngpriv.h pngdebug.h pnginfo.h pngstruct.h pngprefix.h
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500280
281test: check-am
282
283# Extra checks
John Bowlere06092a2010-12-27 22:10:19 -0600284check: scripts/symbols.chk
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500285
286# Don't distribute the generated script files
287dist-hook:
288 cd '$(top_distdir)'; rm -f $(SCRIPT_CLEANFILES)
Glenn Randers-Pehrsoneb580912008-07-30 14:47:09 -0500289
John Bowlerd0479d22013-12-29 19:31:56 -0600290# Make links between installed files with release-specific names and the generic
291# file names. If this install rule is run the generic names will be deleted and
292# recreated - this has obvious issues for systems with multiple installations.
Glenn Randers-Pehrson917648e2004-12-02 18:14:51 -0600293
John Bowlerd0479d22013-12-29 19:31:56 -0600294install-header-links:
295 @set -ex; cd '$(DESTDIR)$(includedir)'; for f in $(HEADERS); do \
296 rm -f "$$f"; $(LN_S) "$(PNGLIB_BASENAME)/$$f" "$$f"; done
297
298uninstall-header-links:
299 cd '$(DESTDIR)$(includedir)'; rm -f $(HEADERS)
300
301install-libpng-pc:
302 @set -ex; cd '$(DESTDIR)$(pkgconfigdir)'; rm -f libpng.pc; \
303 $(LN_S) '$(PNGLIB_BASENAME).pc' libpng.pc
304
305uninstall-libpng-pc:
306 rm -f '$(DESTDIR)$(pkgconfigdir)/libpng.pc'
307
308# EXT_LIST is a list of the possibly library directory extensions, this exists
309# because we can't find a good way of discovering the file extensions that are
310# actually installed on a given system, so instead we check for every extension
311# we have seen.
312
313EXT_LIST = a dll.a so so.@PNGLIB_MAJOR@@PNGLIB_MINOR@.@PNGLIB_RELEASE@ la sl dylib
314
315install-library-links:
316 @set -x; cd '$(DESTDIR)$(libdir)';\
317 for ext in $(EXT_LIST); do\
318 rm -f "libpng.$$ext";\
319 if test -f "$(PNGLIB_BASENAME).$$ext"; then\
320 $(LN_S) "$(PNGLIB_BASENAME).$$ext" "libpng.$$ext" || exit 1;\
321 fi;\
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -0500322 done
Glenn Randers-Pehrsone6474622006-03-04 16:50:47 -0600323
John Bowlerd0479d22013-12-29 19:31:56 -0600324uninstall-library-links:
325 @set -x; cd '$(DESTDIR)$(libdir)'; for ext in $(EXT_LIST); do\
326 rm -f "libpng.$$ext"; done
327
328install-libpng-config:
329 @set -ex; cd '$(DESTDIR)$(bindir)'; rm -f libpng-config; \
330 $(LN_S) '$(PNGLIB_BASENAME)-config' libpng-config
331
332uninstall-libpng-config:
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600333 rm -f '$(DESTDIR)$(bindir)/libpng-config'
John Bowlerd0479d22013-12-29 19:31:56 -0600334
335if DO_INSTALL_LINKS
336# If --enable-unversioned-links is specified the header and lib file links
337# will be automatically made on a 'make install':
338
339install-data-hook: install-header-links
340uninstall-hook: uninstall-header-links
341install-exec-hook: install-library-links
342uninstall-hook: uninstall-library-links
343endif
344
345if DO_INSTALL_LIBPNG_PC
346# Likewise, --install-pc causes libpng.pc to be constructed:
347
348install-data-hook: install-libpng-pc
349uninstall-hook: uninstall-libpng-pc
350endif
351
352if DO_INSTALL_LIBPNG_CONFIG
353# And --install-config:
354
355install-exec-hook: install-libpng-config
356uninstall-hook: uninstall-libpng-config
357endif
John Bowler9e9977e2013-10-17 08:23:13 -0500358
359# The following addition ensures that 'make all' always builds the test programs
360# too. It used to, but some change either in libpng or configure stopped this
361# working.
362all-am: $(check_PROGRAMS)