Makefile.am 4.8 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 = libpng14.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= libpng14-config 
EXTRA_SCRIPTS= libpng-config libpng14-config
29 30 31
bin_SCRIPTS= @binconfigs@

# rules to build libpng, only build the old library on request
32
lib_LTLIBRARIES=libpng14.la @compatlib@
33
EXTRA_LTLIBRARIES= libpng.la
34
libpng14_la_SOURCES = png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \
35
	pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \
36
	pngwtran.c pngmem.c pngerror.c pngpread.c pnggccrd.c \
37 38
	png.h pngconf.h pngintrn.h
libpng_la_SOURCES = $(libpng14_la_SOURCES)
39

40
libpng_la_CPPFLAGS = @LIBPNG_DEFINES@
41
libpng14_la_CPPFLAGS = @LIBPNG_DEFINES@
42

43
# MAJOR UPGRADE: the version-number settings below must be changed.
44
libpng14_la_LDFLAGS = -no-undefined -export-dynamic \
45
	-version-number 1:@PNGLIB_MINOR@:0
46 47
# -rpath is needed as automake doesn't know the directory
libpng_la_LDFLAGS = -rpath '$(libdir)' -no-undefined -export-dynamic \
48
	-version-number 14:@PNGLIB_MINOR@:0
49 50 51

if HAVE_LD_VERSION_SCRIPT
  # Versioned symbols and restricted exports
52 53
  libpng14_la_LDFLAGS += -Wl,--version-script=libpng.vers
  libpng14_la_DEPENDENCIES = libpng.vers
54 55
else
  # Only restricted exports when possible
56 57
  libpng14_la_LDFLAGS += -export-symbols libpng.sym
  libpng14_la_DEPENDENCIES = libpng.sym
58
endif
59
libpng_la_DEPENDENCIES = $(libpng14_la_DEPENDENCIES)
60 61

#distribute headers in /usr/include/libpng/*
62
pkgincludedir= $(includedir)/$(PNGLIB_BASENAME)
63 64
pkginclude_HEADERS= png.h pngconf.h

65 66 67
# pkg-config stuff, note that libpng.pc is always required in order
# to get the correct library
pkgconfigdir = @pkgconfigdir@
68
pkgconfig_DATA = libpng14.pc
69

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

88
CLEANFILES= pngout.png libpng14.pc libpng14-config libpng.vers libpng.sym
89

90 91 92 93 94 95
pngconf.h.in:
	cat pngconf.h > pngconf.h.in

pngconf.h:	pngconf.h.in
	sed "/Makefile-supplied defines go here:/q" pngconf.h.in > pngconf.h
	@if test -n "@LIBPNG_NO_MMX@"; then \
96
	echo "#define PNG_NO_MMX_CODE" >> pngconf.h; \
97 98 99
	fi
	sed "1,/Makefile-supplied defines go here:/d" pngconf.h.in >> pngconf.h

100 101
$(PNGLIB_BASENAME).pc: libpng.pc
	cp libpng.pc $@
102

103 104
$(PNGLIB_BASENAME)-config: libpng-config
	cp libpng-config $@
105

106
libpng.sym: png.h pngconf.h
107
	rm -f $@ $@.new
108
	$(CPP) @LIBPNG_DEFINES@ $(CPPFLAGS) -DPNG_BUILDSYMS $(srcdir)/png.h | \
109 110 111 112
		$(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
113 114 115
	mv $@.new $@

libpng.vers: libpng.sym
116 117
	rm -f $@ $@.new
	$(ECHO) PNG@PNGLIB_MAJOR@_0 '{global:' > $@.new
118
	$(SED) s/$$/\;/ libpng.sym >> $@.new
119 120 121
	$(ECHO) 'local: *; };' >> $@.new
	mv $@.new $@

122 123 124 125 126
# 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
127 128
	cd $(DESTDIR)$(pkgconfigdir); rm -f libpng.pc
	cd $(DESTDIR)$(pkgconfigdir); $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc
129

130
# do evil things to libpng to cause libpng14 to be used
131
install-exec-hook:
132 133
	cd $(DESTDIR)$(bindir); rm -f libpng-config
	cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config
134 135 136 137 138 139
	@set -x;\
	cd $(DESTDIR)$(libdir);\
	for ext in a la so; do\
		rm -f libpng.$$ext;\
		$(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\
	done
140 141 142 143 144 145 146 147 148 149 150 151

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