Makefile.am 11.0 KB
Newer Older
1 2 3 4
# Makefile.am:
#   Source file for Makefile.in (and hence Makefile)
#

5
PNGLIB_BASENAME= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
6

7
ACLOCAL_AMFLAGS = -I scripts
8 9

# test programs - run on make check, make distcheck
10 11
check_PROGRAMS= pngtest pngunknown pngstest pngvalid

12 13 14
# Utilities - installed
bin_PROGRAMS= pngdeflate fixitxt

15
pngtest_SOURCES = pngtest.c
16
pngtest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
17

18
pngvalid_SOURCES = contrib/libtests/pngvalid.c
19
pngvalid_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
20 21

pngstest_SOURCES = contrib/libtests/pngstest.c
22
pngstest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
23 24 25 26

pngunknown_SOURCES = contrib/libtests/pngunknown.c
pngunknown_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la

27 28 29 30 31
pngdeflate_SOURCES = contrib/tools/pngdeflate.c
pngdeflate_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la

fixitxt_SOURCES = contrib/tools/fixitxt.c

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
# Generally these are single line shell scripts to run a test with a particular
# set of parameters:
TESTS =\
   tests/pngtest\
   tests/pngvalid-gamma-16-to-8 tests/pngvalid-gamma-alpha-mode\
   tests/pngvalid-gamma-background tests/pngvalid-gamma-expand16-alpha-mode\
   tests/pngvalid-gamma-expand16-background\
   tests/pngvalid-gamma-expand16-transform tests/pngvalid-gamma-sbit\
   tests/pngvalid-gamma-threshold tests/pngvalid-gamma-transform\
   tests/pngvalid-progressive-interlace-size\
   tests/pngvalid-progressive-interlace-standard\
   tests/pngvalid-progressive-interlace-transform\
   tests/pngvalid-progressive-standard tests/pngvalid-standard\
   tests/pngstest-0g01 tests/pngstest-0g02 tests/pngstest-0g04\
   tests/pngstest-0g08 tests/pngstest-0g16 tests/pngstest-2c08\
   tests/pngstest-2c16 tests/pngstest-3p01 tests/pngstest-3p02\
   tests/pngstest-3p04 tests/pngstest-3p08 tests/pngstest-4a08\
   tests/pngstest-4a16 tests/pngstest-6a08 tests/pngstest-6a16\
   tests/pngstest-error tests/pngunknown-IDAT\
   tests/pngunknown-discard tests/pngunknown-if-safe tests/pngunknown-sAPI\
   tests/pngunknown-sTER tests/pngunknown-save tests/pngunknown-vpAg

# These tests are expected, and required, to fail:
XFAIL_TESTS = tests/pngstest-error
56 57

# man pages
58 59
dist_man_MANS= libpng.3 libpngpf.3 png.5

60
# generate the -config scripts if required
61
binconfigs= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config
62
EXTRA_SCRIPTS= libpng-config libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config
63 64 65
bin_SCRIPTS= @binconfigs@

# rules to build libpng, only build the old library on request
66 67
lib_LTLIBRARIES=libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
# EXTRA_LTLIBRARIES= libpng.la
68
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = png.c pngerror.c\
G
[devel]  
Glenn Randers-Pehrson 已提交
69 70
	pngget.c pngmem.c pngpread.c pngread.c pngrio.c pngrtran.c pngrutil.c\
	pngset.c pngtrans.c pngwio.c pngwrite.c pngwtran.c pngwutil.c\
71
	png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h pngstruct.h pngusr.dfa
72

73
if PNG_ARM_NEON
74 75
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES += arm/arm_init.c\
	arm/filter_neon.S
76 77
endif

78 79
nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = pnglibconf.h

80 81
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS = -no-undefined -export-dynamic \
	-version-number @PNGLIB_MAJOR@@PNGLIB_MINOR@:@PNGLIB_RELEASE@:0
82 83

if HAVE_LD_VERSION_SCRIPT
84 85
#   Versioned symbols and restricted exports
if HAVE_SOLARIS_LD
86
  libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -Wl,-M -Wl,libpng.vers
87
else
88
  libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -Wl,--version-script=libpng.vers
89 90
endif

91
  libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.vers
92
else
93
#   Only restricted exports when possible
94 95
  libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -export-symbols libpng.sym
  libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.sym
96
endif
97

98
#distribute headers in /usr/include/libpng/*
99
pkgincludedir= $(includedir)/$(PNGLIB_BASENAME)
100
pkginclude_HEADERS= png.h pngconf.h
101
nodist_pkginclude_HEADERS= pnglibconf.h
102

103 104 105
# pkg-config stuff, note that libpng.pc is always required in order
# to get the correct library
pkgconfigdir = @pkgconfigdir@
106
pkgconfig_DATA = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc
107

108 109 110
# Extra source distribution files, '${srcdir}' is used below to stop build files
# from those directories being included.  This only works if the configure is
# not done in the source directory!
111
EXTRA_DIST= \
112
	ANNOUNCE CHANGES INSTALL LICENSE README TODO \
113
	pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
114
	${srcdir}/contrib ${srcdir}/projects ${srcdir}/scripts \
115
	$(TESTS) $(XFAIL_TESTS) tests/pngstest \
116
	CMakeLists.txt example.c libpng-manual.txt
117

118 119
SCRIPT_CLEANFILES=scripts/*.out scripts/*.chk scripts/pnglibconf.dfn

120
CLEANFILES= *.tf? pngout.png libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc \
121
	libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config libpng.vers libpng.sym \
122
	check.new pnglibconf.* pngprefix.h symbols.new pngtest-log.txt \
123
	$(SCRIPT_CLEANFILES)
124

125
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
126
config.sub configure depcomp install-sh ltmain.sh missing
127

128 129 130 131 132 133
# PNG_COPTS give extra options for the C compiler to be used on all compilation
# steps (unless targe_CFLAGS is specified; that will take precedence over
# AM_CFLAGS)
PNG_COPTS = @PNG_COPTS@
AM_CFLAGS = ${PNG_COPTS}

134 135 136 137 138 139 140
# DFNCPP is normally just CPP - the C preprocessor - but on Solaris and maybe
# other operating systems (NeXT?) the C preprocessor selected by configure
# checks input tokens for validity - effectively it performs part of the ANSI-C
# parsing - and therefore fails with the .df files.  configure.ac has special
# checks for this and sets DFNCPP appropriately.
DFNCPP = @DFNCPP@

141
SUFFIXES = .chk .dfn .out
142

143 144
$(PNGLIB_BASENAME).pc: libpng.pc
	cp libpng.pc $@
145

146 147
$(PNGLIB_BASENAME)-config: libpng-config
	cp libpng-config $@
148

149
scripts/sym.out scripts/vers.out: png.h pngconf.h pnglibconf.h
150
scripts/prefix.out: png.h pngconf.h pnglibconf.out
151
scripts/symbols.out: png.h pngconf.h $(srcdir)/scripts/pnglibconf.h.prebuilt
152
scripts/intprefix.out: pnglibconf.h
153 154 155 156 157 158 159

libpng.sym: scripts/sym.out
	rm -f $@
	cp $? $@
libpng.vers: scripts/vers.out
	rm -f $@
	cp $? $@
160

161
if DO_PNG_PREFIX
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
# Rename functions in scripts/prefix.out with a PNG_PREFIX prefix.
# Rename macros in scripts/macro.lst from PNG_PREFIXpng_ to PNG_ (the actual
# implementation of the macro).
pnglibconf.h: pnglibconf.out scripts/prefix.out scripts/macro.lst
	rm -f $@
	$(AWK) 's==0 && NR>1{print prev}\
	   s==0{prev=$$0}\
	   s==1{print "#define", $$1, "@PNG_PREFIX@" $$1}\
	   s==2{print "#define @PNG_PREFIX@png_" $$1, "PNG_" $$1}\
	   END{print prev}' s=0 pnglibconf.out s=1 scripts/prefix.out\
	   s=2 ${srcdir}/scripts/macro.lst >pnglibconf.tf8
	mv pnglibconf.tf8 $@

pngprefix.h: scripts/intprefix.out
	rm -f pngprefix.tf1
	$(AWK) '{print "#define", $$1, "@PNG_PREFIX@" $$1}' $? >pngprefix.tf1
	mv pngprefix.tf1 $@
else
180
pnglibconf.h: pnglibconf.out
181 182
	rm -f $@
	cp $? $@
183 184 185 186 187

pngprefix.h: # is empty
	:>$@
endif

188 189
$(srcdir)/scripts/pnglibconf.h.prebuilt:
	@echo "Attempting to build $@" >&2
190 191 192
	@echo "This is a machine generated file, but if you want to make" >&2
	@echo "a new one simply make 'scripts/pnglibconf.out' and copy that" >&2
	@exit 1
193

194 195 196
# The following is necessary to ensure that the local pnglibconf.h is used, not
# an installed one (this can happen immediately after on a clean system if
# 'make test' is the first thing the user does.)
J
John Bowler 已提交
197 198
pngstest.o pngvalid.o pngtest.o pngunknown.o timepng.o: pnglibconf.h
pngdeflate.o fixitxt.o: pnglibconf.h
199

200
# We must use -DPNG_NO_USE_READ_MACROS here even when the library may actually
201 202
# be built with PNG_USE_READ_MACROS; this prevents the read macros from
# interfering with the symbol file format.
203 204
SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0'\
		-DPNGLIB_VERSION='@PNGLIB_VERSION@'\
205
		-DSYMBOL_PREFIX='$(SYMBOL_PREFIX)'\
206
		-DPNG_NO_USE_READ_MACROS -DPNG_BUILDING_SYMBOL_TABLE
207

208
if DO_PNG_PREFIX
209 210 211
SYMBOL_CFLAGS += -DPNG_PREFIX='@PNG_PREFIX@'
endif

212
.dfn.out:
213 214
	rm -f $@ $*.c $*.tf[12]
	test -d scripts || mkdir scripts || test -d scripts
215
	echo '#include "$<"' >$*.c
216
	$(DFNCPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES)\
217
	    $(CPPFLAGS) $(SYMBOL_CFLAGS) $*.c > $*.tf1
218 219 220
	$(AWK) -f "${srcdir}/scripts/dfn.awk" out="$*.tf2" $*.tf1 1>&2
	rm -f $*.c $*.tf1
	mv $*.tf2 $@
221

222
# The .dfn file for pnglibconf.h is machine generated
223
pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk pngconf.h pngusr.dfa $(DFA_XTRA)
224 225
	rm -f $@ $*.tf[45]
	$(AWK) -f ${srcdir}/scripts/options.awk out=$*.tf4 version=search\
226
	    ${srcdir}/pngconf.h ${srcdir}/scripts/pnglibconf.dfa\
227
	    ${srcdir}/pngusr.dfa $(DFA_XTRA) 1>&2
228 229 230
	$(AWK) -f ${srcdir}/scripts/options.awk out=$*.tf5 $*.tf4 1>&2
	rm $*.tf4
	mv $*.tf5 $@
231 232 233

# Symbol checks (.def and .out files should match)
scripts/symbols.chk: scripts/checksym.awk scripts/symbols.def scripts/symbols.out
234

235
.out.chk:
236
	rm -f $@ $*.new
237
	$(AWK) -f ${srcdir}/scripts/checksym.awk ${srcdir}/scripts/${*F}.def\
238 239
	    of="$*.new" $< >&2
	mv $*.new $@
240

241 242
# used on demand to regenerate the standard header, CPPFLAGS should
# be empty - no non-standard defines
243
scripts/pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk pngconf.h
244
	rm -f $@ pnglibconf.tf[67]
245
	test -z "$(CPPFLAGS)"
246
	echo "com @PNGLIB_VERSION@ STANDARD API DEFINITION" |\
247 248 249 250 251 252 253
	$(AWK) -f ${srcdir}/scripts/options.awk out=pnglibconf.tf6\
	    logunsupported=1 version=search ${srcdir}/pngconf.h -\
	    ${srcdir}/scripts/pnglibconf.dfa 1>&2
	$(AWK) -f ${srcdir}/scripts/options.awk out=pnglibconf.tf7\
	    pnglibconf.tf6 1>&2
	rm pnglibconf.tf6
	mv pnglibconf.tf7 $@
254 255

$(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS): png.h pngconf.h \
256
	pnglibconf.h pngpriv.h pngdebug.h pnginfo.h pngstruct.h pngprefix.h
257 258 259 260

test: check-am

# Extra checks
261
check: scripts/symbols.chk
262

263 264 265
# Don't distribute the generated script files
dist-hook:
	cd '$(top_distdir)'; rm -f $(SCRIPT_CLEANFILES)
266

267 268
# install the .../include headers as links to the new ones
install-data-hook:
269 270 271
	cd '$(DESTDIR)$(includedir)'; rm -f png.h pngconf.h pnglibconf.h
	cd '$(DESTDIR)$(includedir)'; $(LN_S) $(PNGLIB_BASENAME)/png.h png.h
	cd '$(DESTDIR)$(includedir)'; $(LN_S) $(PNGLIB_BASENAME)/pngconf.h \
272
		pngconf.h
273
	cd '$(DESTDIR)$(includedir)'; $(LN_S) $(PNGLIB_BASENAME)/pnglibconf.h \
274
		pnglibconf.h
275 276
	cd '$(DESTDIR)$(pkgconfigdir)'; rm -f libpng.pc
	cd '$(DESTDIR)$(pkgconfigdir)'; $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc
277

278
# do evil things to libpng to cause libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ to be used
279
install-exec-hook:
280 281 282
	cd '$(DESTDIR)$(bindir)'; rm -f libpng-config
	cd '$(DESTDIR)$(bindir)';\
	   $(LN_S) $(PNGLIB_BASENAME)-config libpng-config
283
	@set -x;\
284 285 286
	cd '$(DESTDIR)$(libdir)';\
	for ext in a la so so.@PNGLIB_MAJOR@@PNGLIB_MINOR@.@PNGLIB_RELEASE@\
	   sl dylib dll.a; do\
287
		rm -f libpng.$$ext;\
288 289 290
                if test -f $(PNGLIB_BASENAME).$$ext; then\
                       $(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\
                fi;\
291
	done
292 293

uninstall-hook:
294 295 296 297 298 299 300 301 302 303
	cd '$(DESTDIR)$(includedir)'; rm -f png.h pngconf.h pnglibconf.h
	rm -f '$(DESTDIR)$(pkgconfigdir)/libpng.pc'
	rm -f '$(DESTDIR)$(bindir)/libpng-config'
	rm -f '$(DESTDIR)$(libdir)/libpng.a'
	rm -f '$(DESTDIR)$(libdir)/libpng.la'
	rm -f '$(DESTDIR)$(libdir)/libpng.so'
	rm -f '$(DESTDIR)$(libdir)/libpng.so.@PNGLIB_MAJOR@@PNGLIB_MINOR@.@PNGLIB_RELEASE@'
	rm -f '$(DESTDIR)$(libdir)/libpng.sl'
	rm -f '$(DESTDIR)$(libdir)/libpng.dylib'
	rm -f '$(DESTDIR)$(libdir)/libpng.dll.a'