Makefile.am 4.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Makefile.am:
#   Source file for Makefile.in (and hence Makefile)
#
# Makefile.am need only be changed on a major version number
# change (e.g. libpng12 --> libpng13).  In that case seach
# this file for every instance of the old base name (libpng12)
# and change to the new one (libpng13), then change the
# -version-number settings below so that the new values have
# the correct major part (first field).

PNGLIB_BASENAME= libpng@PNGLIB_MAJOR@

# libpng does not follow GNU file name conventions
AUTOMAKE_OPTIONS = foreign

# test programs - run on make check, make distcheck
17 18
check_PROGRAMS= pngtest
pngtest_SOURCES = pngtest.c
19
pngtest_LDADD = libpng12.la
20 21
TESTS = test-pngtest.sh
TESTS_ENVIRONMENT= srcdir=$(srcdir) 
22 23

# man pages
24 25
dist_man_MANS= libpng.3 libpngpf.3 png.5

26
# generate the -config scripts if required
27 28
binconfigs= libpng12-config 
EXTRA_SCRIPTS= libpng-config libpng12-config
29 30 31 32 33
bin_SCRIPTS= @binconfigs@

# rules to build libpng, only build the old library on request
lib_LTLIBRARIES=libpng12.la @compatlib@
EXTRA_LTLIBRARIES= libpng.la
34 35
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 \
36
	pngwtran.c pngmem.c pngerror.c pngpread.c pnggccrd.c \
37
	png.h pngconf.h
38
libpng_la_SOURCES = $(libpng12_la_SOURCES)
39 40 41 42 43 44
# MAJOR UPGRADE: the version-number settings below must be changed.
libpng12_la_LDFLAGS = -no-undefined -export-dynamic \
	-version-number 0:@PNGLIB_MINOR@:0
# -rpath is needed as automake doesn't know the directory
libpng_la_LDFLAGS = -rpath '$(libdir)' -no-undefined -export-dynamic \
	-version-number 3:@PNGLIB_MINOR@:0
45 46 47 48

if HAVE_LD_VERSION_SCRIPT
  # Versioned symbols and restricted exports
  libpng12_la_LDFLAGS += -Wl,--version-script=libpng.vers
49
  libpng12_la_DEPENDENCIES = libpng.vers
50 51 52
else
  # Only restricted exports when possible
  libpng12_la_LDFLAGS += -export-symbols libpng.sym
53
  libpng12_la_DEPENDENCIES = libpng.sym
54
endif
55
libpng_la_DEPENDENCIES = $(libpng12_la_DEPENDENCIES)
56 57

#distribute headers in /usr/include/libpng/*
58
pkgincludedir= $(includedir)/$(PNGLIB_BASENAME)
59 60
pkginclude_HEADERS= png.h pngconf.h

61 62 63
# pkg-config stuff, note that libpng.pc is always required in order
# to get the correct library
pkgconfigdir = @pkgconfigdir@
64
pkgconfig_DATA = libpng12.pc
65

66
#extra source distribution files.
67
EXTRA_DIST= \
68
	ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO \
69
	pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
70 71 72 73 74 75
	${srcdir}/projects/cbuilder5/* \
	${srcdir}/projects/beos/* \
	${srcdir}/projects/visualc6/* \
	${srcdir}/projects/visualc71/* \
	${srcdir}/projects/wince.txt \
	${srcdir}/projects/netware.txt \
76 77 78 79 80 81
	${srcdir}/scripts/* \
	${srcdir}/contrib/gregbook/* \
	${srcdir}/contrib/pngminus/* \
	${srcdir}/contrib/pngsuite/* \
	${srcdir}/contrib/visupng/* \
	$(TESTS) \
82
	example.c libpng.txt pngvcrd.c 
83

84
CLEANFILES= pngout.png libpng12.pc libpng12-config libpng.vers libpng.sym
85

86 87
$(PNGLIB_BASENAME).pc: libpng.pc
	cp libpng.pc $@
88

89 90
$(PNGLIB_BASENAME)-config: libpng-config
	cp libpng-config $@
91

92
libpng.sym: png.h pngconf.h
93 94 95 96 97
	rm -f $@ $@.new
	$(CPP) $(CPPFLAGS) -DPNG_BUILDSYMS $(srcdir)/png.h | \
		$(SED) -n -e 's|^.*PNG_FUNCTION_EXPORT[ 	]*\([a-zA-Z0-9_]*\).*$$|\1|p' \
			-e 's|^.*PNG_DATA_EXPORT[ 	]*\([a-zA-Z0-9_]*\).*$$|\1|p' \
			>$@.new
98 99 100
	mv $@.new $@

libpng.vers: libpng.sym
101 102
	rm -f $@ $@.new
	$(ECHO) PNG@PNGLIB_MAJOR@_0 '{global:' > $@.new
103
	$(SED) s/$$/\;/ libpng.sym >> $@.new
104 105 106
	$(ECHO) 'local: *; };' >> $@.new
	mv $@.new $@

107 108 109 110 111
# 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
112 113
	cd $(DESTDIR)$(pkgconfigdir); rm -f libpng.pc
	cd $(DESTDIR)$(pkgconfigdir); $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc
114

115 116 117
# do evil things to libpng to cause libpng12 to be used, if
# the compat library is not being built do nothing.
install-exec-hook:
118 119
	cd $(DESTDIR)$(bindir); rm -f libpng-config
	cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config
120 121 122 123 124 125 126 127
	@if test -n "@compatlib@"; then\
		set -x;\
		cd $(DESTDIR)$(libdir);\
		for ext in a la so; do\
			rm -f libpng.$$ext;\
			$(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\
		done;\
	fi
128 129 130 131 132 133 134 135 136 137 138 139

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);\
		for ext in a la so; do\
			rm -f libpng.$$ext;\
		done;\
	fi