2006-03-02 13:23:18 +00:00
|
|
|
# Makefile.am:
|
|
|
|
# Source file for Makefile.in (and hence Makefile)
|
|
|
|
#
|
|
|
|
# Makefile.am need only be changed on a major version number
|
2009-07-28 19:28:37 +00:00
|
|
|
# change (e.g. libpng12 --> libpng14). In that case seach
|
2006-03-02 13:23:18 +00:00
|
|
|
# this file for every instance of the old base name (libpng12)
|
2009-07-28 19:28:37 +00:00
|
|
|
# and change to the new one (libpng14), then change the
|
2006-03-02 13:23:18 +00:00
|
|
|
# -version-number settings below so that the new values have
|
|
|
|
# the correct major part (first field).
|
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
PNGLIB_BASENAME= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
|
2006-03-02 13:23:18 +00:00
|
|
|
|
|
|
|
# libpng does not follow GNU file name conventions
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
|
|
|
# test programs - run on make check, make distcheck
|
2004-12-03 00:14:51 +00:00
|
|
|
check_PROGRAMS= pngtest
|
|
|
|
pngtest_SOURCES = pngtest.c
|
2006-03-04 22:50:47 +00:00
|
|
|
pngtest_LDADD = libpng12.la
|
2004-12-03 00:14:51 +00:00
|
|
|
TESTS = test-pngtest.sh
|
2009-11-22 17:37:19 +00:00
|
|
|
TESTS_ENVIRONMENT= srcdir=$(srcdir)
|
2006-03-02 13:23:18 +00:00
|
|
|
|
|
|
|
# man pages
|
2004-12-03 00:14:51 +00:00
|
|
|
dist_man_MANS= libpng.3 libpngpf.3 png.5
|
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
# generate the -config scripts if required
|
2009-11-22 17:37:19 +00:00
|
|
|
binconfigs= libpng12-config
|
2006-03-04 22:50:47 +00:00
|
|
|
EXTRA_SCRIPTS= libpng-config libpng12-config
|
2006-03-02 13:23:18 +00:00
|
|
|
bin_SCRIPTS= @binconfigs@
|
|
|
|
|
|
|
|
# rules to build libpng, only build the old library on request
|
|
|
|
lib_LTLIBRARIES=libpng12.la @compatlib@
|
|
|
|
EXTRA_LTLIBRARIES= libpng.la
|
2004-12-03 00:14:51 +00:00
|
|
|
libpng12_la_SOURCES = png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \
|
|
|
|
pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \
|
2007-09-01 20:12:50 +00:00
|
|
|
pngwtran.c pngmem.c pngerror.c pngpread.c \
|
2006-03-07 13:09:22 +00:00
|
|
|
png.h pngconf.h
|
2004-12-03 00:14:51 +00:00
|
|
|
libpng_la_SOURCES = $(libpng12_la_SOURCES)
|
2006-04-15 11:37:45 +00:00
|
|
|
|
2006-04-17 19:33:23 +00:00
|
|
|
libpng_la_CPPFLAGS = @LIBPNG_DEFINES@
|
|
|
|
libpng12_la_CPPFLAGS = @LIBPNG_DEFINES@
|
2006-04-15 11:37:45 +00:00
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
# MAJOR UPGRADE: the version-number settings below must be changed.
|
|
|
|
libpng12_la_LDFLAGS = -no-undefined -export-dynamic \
|
2006-12-25 19:31:13 +00:00
|
|
|
-version-number 0:@PNGLIB_RELEASE@:0
|
2006-03-02 13:23:18 +00:00
|
|
|
# -rpath is needed as automake doesn't know the directory
|
|
|
|
libpng_la_LDFLAGS = -rpath '$(libdir)' -no-undefined -export-dynamic \
|
2006-12-25 19:31:13 +00:00
|
|
|
-version-number 3:@PNGLIB_RELEASE@:0
|
2006-03-04 22:50:47 +00:00
|
|
|
|
|
|
|
if HAVE_LD_VERSION_SCRIPT
|
|
|
|
# Versioned symbols and restricted exports
|
|
|
|
libpng12_la_LDFLAGS += -Wl,--version-script=libpng.vers
|
2006-03-07 13:09:22 +00:00
|
|
|
libpng12_la_DEPENDENCIES = libpng.vers
|
2006-03-04 22:50:47 +00:00
|
|
|
else
|
|
|
|
# Only restricted exports when possible
|
|
|
|
libpng12_la_LDFLAGS += -export-symbols libpng.sym
|
2006-03-07 13:09:22 +00:00
|
|
|
libpng12_la_DEPENDENCIES = libpng.sym
|
2006-03-04 22:50:47 +00:00
|
|
|
endif
|
2006-03-07 13:09:22 +00:00
|
|
|
libpng_la_DEPENDENCIES = $(libpng12_la_DEPENDENCIES)
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2007-10-15 18:39:24 +00:00
|
|
|
# Avoid depending upon Character Ranges.
|
|
|
|
AN = '_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
|
|
|
|
|
2004-12-03 00:14:51 +00:00
|
|
|
#distribute headers in /usr/include/libpng/*
|
2006-03-02 13:23:18 +00:00
|
|
|
pkgincludedir= $(includedir)/$(PNGLIB_BASENAME)
|
2004-12-03 00:14:51 +00:00
|
|
|
pkginclude_HEADERS= png.h pngconf.h
|
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
# pkg-config stuff, note that libpng.pc is always required in order
|
|
|
|
# to get the correct library
|
|
|
|
pkgconfigdir = @pkgconfigdir@
|
2006-03-04 22:50:47 +00:00
|
|
|
pkgconfig_DATA = libpng12.pc
|
2006-03-02 13:23:18 +00:00
|
|
|
|
2004-12-03 00:14:51 +00:00
|
|
|
#extra source distribution files.
|
2006-02-24 12:30:16 +00:00
|
|
|
EXTRA_DIST= \
|
2006-03-04 22:50:47 +00:00
|
|
|
ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO \
|
2004-12-03 00:14:51 +00:00
|
|
|
pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
|
2006-02-24 12:30:16 +00:00
|
|
|
${srcdir}/projects/cbuilder5/* \
|
|
|
|
${srcdir}/projects/beos/* \
|
|
|
|
${srcdir}/projects/visualc6/* \
|
|
|
|
${srcdir}/projects/visualc71/* \
|
|
|
|
${srcdir}/projects/wince.txt \
|
|
|
|
${srcdir}/projects/netware.txt \
|
2004-12-03 00:14:51 +00:00
|
|
|
${srcdir}/scripts/* \
|
|
|
|
${srcdir}/contrib/gregbook/* \
|
|
|
|
${srcdir}/contrib/pngminus/* \
|
|
|
|
${srcdir}/contrib/pngsuite/* \
|
|
|
|
${srcdir}/contrib/visupng/* \
|
|
|
|
$(TESTS) \
|
2009-12-25 20:19:07 +00:00
|
|
|
example.c libpng-1.2.42rc03.txt pngvcrd.c
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2006-06-14 18:59:43 +00:00
|
|
|
CLEANFILES= pngout.png libpng12.pc libpng12-config libpng.vers \
|
|
|
|
libpng.sym
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2008-04-19 11:43:25 +00:00
|
|
|
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
|
|
|
|
config.sub configure depcomp install-sh ltmain.sh missing
|
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
$(PNGLIB_BASENAME).pc: libpng.pc
|
|
|
|
cp libpng.pc $@
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
$(PNGLIB_BASENAME)-config: libpng-config
|
|
|
|
cp libpng-config $@
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2006-03-04 22:50:47 +00:00
|
|
|
libpng.sym: png.h pngconf.h
|
2006-03-07 13:09:22 +00:00
|
|
|
rm -f $@ $@.new
|
2006-11-28 16:26:15 +00:00
|
|
|
$(CPP) @LIBPNG_DEFINES@ $(CPPFLAGS) -DPNG_BUILDSYMS $(srcdir)/png.h | \
|
2007-10-15 18:39:24 +00:00
|
|
|
$(SED) -n -e \
|
2007-11-20 02:02:11 +00:00
|
|
|
's|^.*PNG_FUNCTION_EXPORT[ ]*\([$(AN)]*\).*$$|$(SYMBOL_PREFIX)\1|p' \
|
|
|
|
-e 's|^.*PNG_DATA_EXPORT[ ]*\([$(AN)]*\).*$$|$(SYMBOL_PREFIX)\1|p' \
|
2006-03-07 13:09:22 +00:00
|
|
|
>$@.new
|
2006-03-04 22:50:47 +00:00
|
|
|
mv $@.new $@
|
|
|
|
|
|
|
|
libpng.vers: libpng.sym
|
2006-03-07 13:09:22 +00:00
|
|
|
rm -f $@ $@.new
|
2008-05-02 04:10:45 +00:00
|
|
|
echo PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0 '{global:' > $@.new
|
2006-03-20 13:24:58 +00:00
|
|
|
$(SED) s/$$/\;/ libpng.sym >> $@.new
|
2008-05-02 04:10:45 +00:00
|
|
|
echo 'local: *; };' >> $@.new
|
2006-03-04 22:50:47 +00:00
|
|
|
mv $@.new $@
|
|
|
|
|
2007-06-30 10:26:07 +00:00
|
|
|
test: check
|
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
# install the .../include headers as links to the new ones
|
|
|
|
install-data-hook:
|
|
|
|
cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h
|
|
|
|
cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/png.h png.h
|
|
|
|
cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pngconf.h pngconf.h
|
2006-03-04 22:50:47 +00:00
|
|
|
cd $(DESTDIR)$(pkgconfigdir); rm -f libpng.pc
|
|
|
|
cd $(DESTDIR)$(pkgconfigdir); $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2006-04-21 02:29:31 +00:00
|
|
|
# do evil things to libpng to cause libpng12 to be used
|
2006-03-02 13:23:18 +00:00
|
|
|
install-exec-hook:
|
2006-03-04 22:50:47 +00:00
|
|
|
cd $(DESTDIR)$(bindir); rm -f libpng-config
|
|
|
|
cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config
|
2006-04-21 02:29:31 +00:00
|
|
|
@set -x;\
|
|
|
|
cd $(DESTDIR)$(libdir);\
|
2007-06-23 02:40:24 +00:00
|
|
|
for ext in a la so sl dylib; do\
|
2006-04-21 02:29:31 +00:00
|
|
|
rm -f libpng.$$ext;\
|
2006-11-08 02:09:46 +00:00
|
|
|
if test -f $(PNGLIB_BASENAME).$$ext; then\
|
|
|
|
$(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\
|
|
|
|
fi;\
|
2006-04-21 02:29:31 +00:00
|
|
|
done
|
2006-03-04 22:50:47 +00:00
|
|
|
|
|
|
|
uninstall-hook:
|
|
|
|
cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h
|
|
|
|
rm -f $(DESTDIR)$(pkgconfigdir)/libpng.pc
|
|
|
|
rm -f $(DESTDIR)$(bindir)/libpng-config
|
|
|
|
@if test -n "@compatlib@"; then\
|
|
|
|
set -x;\
|
|
|
|
cd $(DESTDIR)$(libdir);\
|
2007-06-23 02:40:24 +00:00
|
|
|
for ext in a la so sl dylib; do\
|
2006-03-04 22:50:47 +00:00
|
|
|
rm -f libpng.$$ext;\
|
|
|
|
done;\
|
|
|
|
fi
|