Makefile.am 7.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

# libpng does not follow GNU file name conventions
8
AUTOMAKE_OPTIONS = foreign color-tests
9 10

# test programs - run on make check, make distcheck
G
[devel]  
Glenn Randers-Pehrson 已提交
11
check_PROGRAMS= pngtest pngvalid
12
pngtest_SOURCES = pngtest.c
13
pngtest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
G
[devel]  
Glenn Randers-Pehrson 已提交
14 15 16
pngvalid_SOURCES = pngvalid.c
pngvalid_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
TESTS = test-pngtest.sh pngvalid
17
TESTS_ENVIRONMENT= srcdir=$(srcdir) 
18 19

# man pages
20 21
dist_man_MANS= libpng.3 libpngpf.3 png.5

22
# generate the -config scripts if required
23 24
binconfigs= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config 
EXTRA_SCRIPTS= libpng-config libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config
25 26 27
bin_SCRIPTS= @binconfigs@

# rules to build libpng, only build the old library on request
28 29
lib_LTLIBRARIES=libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
# EXTRA_LTLIBRARIES= libpng.la
30
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = png.c pngerror.c\
G
[devel]  
Glenn Randers-Pehrson 已提交
31 32 33
	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\
	png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h pngstruct.h
34

35 36
nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = pnglibconf.h

37
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_CPPFLAGS = @LIBPNG_DEFINES@
38

39 40
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS = -no-undefined -export-dynamic \
	-version-number @PNGLIB_MAJOR@@PNGLIB_MINOR@:@PNGLIB_RELEASE@:0
41 42 43

if HAVE_LD_VERSION_SCRIPT
  # Versioned symbols and restricted exports
44 45
  libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -Wl,--version-script=libpng.vers
  libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.vers
46 47
else
  # Only restricted exports when possible
48 49
  libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -export-symbols libpng.sym
  libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.sym
50
endif
51

52
#distribute headers in /usr/include/libpng/*
53
pkgincludedir= $(includedir)/$(PNGLIB_BASENAME)
54
pkginclude_HEADERS= png.h pngconf.h
55
nodist_pkginclude_HEADERS= pnglibconf.h
56

57 58 59
# pkg-config stuff, note that libpng.pc is always required in order
# to get the correct library
pkgconfigdir = @pkgconfigdir@
60
pkgconfig_DATA = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc
61

62
#extra source distribution files.
63
EXTRA_DIST= \
64
	ANNOUNCE CHANGES INSTALL LICENSE README TODO \
65
	pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
66
	${srcdir}/contrib ${srcdir}/projects ${srcdir}/scripts \
67
	$(TESTS) \
68
	CMakeLists.txt example.c libpng-@PNGLIB_VERSION@.txt
69

70 71
SCRIPT_CLEANFILES=scripts/*.out scripts/*.chk scripts/pnglibconf.dfn

72
CLEANFILES= dfn.c dfn?.out pngout.png libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc \
73
	libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config libpng.vers libpng.sym \
74 75
	pngwin.def check.new pnglibconf.* symbols.new \
	$(SCRIPT_CLEANFILES)
76

77
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
78
config.sub configure depcomp install-sh ltmain.sh missing
79

80
SUFFIXES = .chk .dfn .out
81

82 83
$(PNGLIB_BASENAME).pc: libpng.pc
	cp libpng.pc $@
84

85 86
$(PNGLIB_BASENAME)-config: libpng-config
	cp libpng-config $@
87

88 89
scripts/sym.out scripts/vers.out: png.h pngconf.h pnglibconf.h
scripts/symbols.out scripts/pngwin.out: png.h pngconf.h scripts/pnglibconf.h
90 91 92 93 94 95 96

libpng.sym: scripts/sym.out
	rm -f $@
	cp $? $@
libpng.vers: scripts/vers.out
	rm -f $@
	cp $? $@
97 98 99 100
pngwin.def: scripts/pngwin.out
	rm -f $@
	cp $? $@
pnglibconf.h: pnglibconf.out
101 102
	rm -f $@
	cp $? $@
103 104 105 106
scripts/pnglibconf.h:
	@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
107

108 109 110 111 112
# 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.)
pngvalid.o pngtest.o: pnglibconf.h

113 114 115 116
SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0'\
		-DPNGLIB_VERSION='@PNGLIB_VERSION@'\
		-DSYMBOL_PREFIX='$(SYMBOL_PREFIX)'

117
.dfn.out:
118
	rm -f $@ dfn.c dfn?.out
119
	test -d scripts || mkdir scripts
120
	echo '#include "$<"' >dfn.c
121 122 123 124 125
	$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) @LIBPNG_DEFINES@\
	    $(CPPFLAGS) $(SYMBOL_CFLAGS) dfn.c >dfn1.out
	$(SED) -n -e 's|^.*PNG_DEFN_MAGIC-\(.*\)-PNG_DEFN_END.*$$|\1|p'\
	    dfn1.out >dfn2.out
	$(SED) -e 's| *@@@ *||g' -e 's| *$$||' dfn2.out >dfn3.out
126
	rm -f dfn.c dfn[12].out
127
	mv dfn3.out $@
128

129 130 131
# The .dfn file for pnglibconf.h is machine generated
pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk
	rm -f $@ dfn?.out
132 133 134
	$(AWK) -f ${srcdir}/scripts/options.awk out=dfn1.out\
	    ${srcdir}/scripts/pnglibconf.dfa $(DFA_XTRA) 1>&2
	$(AWK) -f ${srcdir}/scripts/options.awk out=dfn2.out dfn1.out 1>&2
135 136 137 138 139 140 141
	rm dfn1.out
	mv dfn2.out $@

# Symbol checks (.def and .out files should match)
scripts/pngwin.chk: scripts/checksym.awk scripts/pngwin.def scripts/pngwin.out
scripts/symbols.chk: scripts/checksym.awk scripts/symbols.def scripts/symbols.out
.out.chk:
142
	rm -f $@ symbols.new
143 144
	$(AWK) -f ${srcdir}/scripts/checksym.awk ${srcdir}/scripts/${*F}.def\
	    $< >&2
145 146
	mv symbols.new $@

147 148 149 150 151 152
# used on demand to regenerate the standard header, CPPFLAGS should
# be empty - no non-standard defines
scripts/pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk
	rm -f $@ dfn?.out
	test -z "$(CPPFLAGS)" 
	echo "com @PNGLIB_VERSION@ STANDARD API DEFINITION" |\
153
	$(AWK) -f ${srcdir}/scripts/options.awk out=dfn1.out\
154
	    logunsupported=1 - ${srcdir}/scripts/pnglibconf.dfa 1>&2
155
	$(AWK) -f ${srcdir}/scripts/options.awk out=dfn2.out dfn1.out 1>&2
156 157 158 159 160 161 162 163 164 165
	rm dfn1.out
	mv dfn2.out $@

$(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS): png.h pngconf.h \
	pnglibconf.h pngpriv.h pngdebug.h pnginfo.h pngstruct.h

test: check-am

# Extra checks
check: scripts/symbols.chk scripts/pngwin.chk
166

167 168 169
# Don't distribute the generated script files
dist-hook:
	cd '$(top_distdir)'; rm -f $(SCRIPT_CLEANFILES)
170

171 172
# install the .../include headers as links to the new ones
install-data-hook:
173
	cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h pnglibconf.h
174
	cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/png.h png.h
175 176
	cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pngconf.h \
		pngconf.h
177 178
	cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pnglibconf.h \
		pnglibconf.h
179 180
	cd $(DESTDIR)$(pkgconfigdir); rm -f libpng.pc
	cd $(DESTDIR)$(pkgconfigdir); $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc
181

182
# do evil things to libpng to cause libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ to be used
183
install-exec-hook:
184 185
	cd $(DESTDIR)$(bindir); rm -f libpng-config
	cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config
186 187
	@set -x;\
	cd $(DESTDIR)$(libdir);\
188
	for ext in a la so so.@PNGLIB_MAJOR@@PNGLIB_MINOR@.@PNGLIB_RELEASE@ sl dylib dll.a; do\
189
		rm -f libpng.$$ext;\
190 191 192
                if test -f $(PNGLIB_BASENAME).$$ext; then\
                       $(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\
                fi;\
193
	done
194 195

uninstall-hook:
196
	cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h pnglibconf.h
197 198
	rm -f $(DESTDIR)$(pkgconfigdir)/libpng.pc
	rm -f $(DESTDIR)$(bindir)/libpng-config
199 200
	rm -f $(DESTDIR)$(libdir)/libpng.a
	rm -f $(DESTDIR)$(libdir)/libpng.la