(metux) configure.ac: removed broken and obsolete AC_C_CONST
[mirror-ossqm-libpng.git] / Makefile.am
blob8ab34183911a445817a6ca0b645cedd5e55fa102
1 # Makefile.am:
2 #   Source file for Makefile.in (and hence Makefile)
5 PNGLIB_BASENAME= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
7 # libpng does not follow GNU file name conventions
9 # "color-tests" requires automake 1.11.1 or later.  Enable it if you like,
10 # to get red "FAIL" and green "PASS" notations during tests.
11 # AUTOMAKE_OPTIONS = foreign color-tests
12 AUTOMAKE_OPTIONS = foreign
14 # test programs - run on make check, make distcheck
15 check_PROGRAMS= pngtest pngvalid
16 pngtest_SOURCES = pngtest.c
17 pngtest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
18 pngvalid_SOURCES = pngvalid.c
19 pngvalid_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
20 TESTS = test-pngtest.sh test-pngvalid-simple.sh test-pngvalid-full.sh
21 TESTS_ENVIRONMENT= srcdir=$(srcdir) 
23 # man pages
24 dist_man_MANS= libpng.3 libpngpf.3 png.5
26 # generate the -config scripts if required
27 binconfigs= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config 
28 EXTRA_SCRIPTS= libpng-config libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config
29 bin_SCRIPTS= @binconfigs@
31 # rules to build libpng, only build the old library on request
32 lib_LTLIBRARIES=libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
33 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = png.c pngerror.c\
34         pngget.c pngmem.c pngpread.c pngread.c pngrio.c pngrtran.c pngrutil.c\
35         pngset.c pngtrans.c pngwio.c pngwrite.c pngwtran.c pngwutil.c\
36         png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h pngstruct.h
38 nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = pnglibconf.h
40 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_CPPFLAGS = @LIBPNG_DEFINES@
42 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS = -no-undefined -export-dynamic \
43         -version-number @PNGLIB_MAJOR@@PNGLIB_MINOR@:@PNGLIB_RELEASE@:0
45 if HAVE_LD_VERSION_SCRIPT
46   # Versioned symbols and restricted exports
47   libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -Wl,--version-script=libpng.vers
48   libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.vers
49 else
50   # Only restricted exports when possible
51   libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -export-symbols libpng.sym
52   libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.sym
53 endif
55 #distribute headers in /usr/include/libpng/*
56 pkgincludedir= $(includedir)/$(PNGLIB_BASENAME)
57 pkginclude_HEADERS= png.h pngconf.h
58 nodist_pkginclude_HEADERS= pnglibconf.h
60 # pkg-config stuff, note that libpng.pc is always required in order
61 # to get the correct library
62 pkgconfigdir = @pkgconfigdir@
63 pkgconfig_DATA = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc
65 #extra source distribution files.
66 EXTRA_DIST= \
67         ANNOUNCE CHANGES INSTALL LICENSE README TODO \
68         pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
69         ${srcdir}/contrib ${srcdir}/projects ${srcdir}/scripts \
70         $(TESTS) \
71         CMakeLists.txt example.c libpng-manual.txt
73 SCRIPT_CLEANFILES=scripts/*.out scripts/*.chk scripts/pnglibconf.dfn
75 CLEANFILES= dfn.c dfn?.out pngout.png libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc \
76         libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config libpng.vers libpng.sym \
77         check.new pnglibconf.* symbols.new pngtest-log.txt \
78         $(SCRIPT_CLEANFILES)
80 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
81 config.sub configure depcomp install-sh ltmain.sh missing
83 # DFNCPP is normally just CPP - the C preprocessor - but on Solaris and maybe
84 # other operating systems (NeXT?) the C preprocessor selected by configure
85 # checks input tokens for validity - effectively it performs part of the ANSI-C
86 # parsing - and therefore fails with the .df files.  configure.ac has special
87 # checks for this and sets DFNCPP appropriately.
88 DFNCPP = @DFNCPP@
90 SUFFIXES = .chk .dfn .out
92 $(PNGLIB_BASENAME).pc: libpng.pc
93         cp libpng.pc $@
95 $(PNGLIB_BASENAME)-config: libpng-config
96         cp libpng-config $@
98 scripts/sym.out scripts/vers.out: png.h pngconf.h pnglibconf.h
99 scripts/symbols.out: png.h pngconf.h scripts/pnglibconf.h.prebuilt
101 libpng.sym: scripts/sym.out
102         rm -f $@
103         cp $? $@
104 libpng.vers: scripts/vers.out
105         rm -f $@
106         cp $? $@
107 pnglibconf.h: pnglibconf.out
108         rm -f $@
109         cp $? $@
110 scripts/pnglibconf.h.prebuilt:
111         @echo "This is a machine generated file, but if you want to make" >&2
112         @echo "a new one simply make 'scripts/pnglibconf.out' and copy that" >&2
113         @exit 1
115 # The following is necessary to ensure that the local pnglibconf.h is used, not
116 # an installed one (this can happen immediately after on a clean system if
117 # 'make test' is the first thing the user does.)
118 pngvalid.o pngtest.o: pnglibconf.h
120 # We must use -DPNG_NO_USE_READ_MACROS here even when the library may actually
121 # be built with PNG_USE_READ_MACROS; this stops the read macros interfering
122 # with the symbol file format.
123 SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0'\
124                 -DPNGLIB_VERSION='@PNGLIB_VERSION@'\
125                 -DSYMBOL_PREFIX='$(SYMBOL_PREFIX)'\
126                 -DPNG_NO_USE_READ_MACROS
128 .dfn.out:
129         rm -f $@ dfn.c dfn?.out
130         test -d scripts || mkdir scripts
131         echo '#include "$<"' >dfn.c
132         $(DFNCPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) @LIBPNG_DEFINES@\
133             $(CPPFLAGS) $(SYMBOL_CFLAGS) dfn.c > dfn1.out
134         $(SED) -n -e 's|^.*PNG_DEFN_MAGIC-\(.*\)-PNG_DEFN_END.*$$|\1|p'\
135             dfn1.out >dfn2.out
136         $(SED) -e 's| *@@@ *||g' -e 's| *$$||' dfn2.out >dfn3.out
137         rm -f dfn.c dfn[12].out
138         mv dfn3.out $@
140 # The .dfn file for pnglibconf.h is machine generated
141 pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk
142         rm -f $@ dfn?.out
143         $(AWK) -f ${srcdir}/scripts/options.awk out=dfn1.out\
144             ${srcdir}/scripts/pnglibconf.dfa $(DFA_XTRA) 1>&2
145         $(AWK) -f ${srcdir}/scripts/options.awk out=dfn2.out dfn1.out 1>&2
146         rm dfn1.out
147         mv dfn2.out $@
149 # Symbol checks (.def and .out files should match)
150 scripts/symbols.chk: scripts/checksym.awk scripts/symbols.def scripts/symbols.out
151 .out.chk:
152         rm -f $@ symbols.new
153         $(AWK) -f ${srcdir}/scripts/checksym.awk ${srcdir}/scripts/${*F}.def\
154             $< >&2
155         mv symbols.new $@
157 # used on demand to regenerate the standard header, CPPFLAGS should
158 # be empty - no non-standard defines
159 scripts/pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk
160         rm -f $@ dfn?.out
161         test -z "$(CPPFLAGS)" 
162         echo "com @PNGLIB_VERSION@ STANDARD API DEFINITION" |\
163         $(AWK) -f ${srcdir}/scripts/options.awk out=dfn1.out\
164             logunsupported=1 - ${srcdir}/scripts/pnglibconf.dfa 1>&2
165         $(AWK) -f ${srcdir}/scripts/options.awk out=dfn2.out dfn1.out 1>&2
166         rm dfn1.out
167         mv dfn2.out $@
169 $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS): png.h pngconf.h \
170         pnglibconf.h pngpriv.h pngdebug.h pnginfo.h pngstruct.h
172 test: check-am
174 # Extra checks
175 check: scripts/symbols.chk
177 # Don't distribute the generated script files
178 dist-hook:
179         cd '$(top_distdir)'; rm -f $(SCRIPT_CLEANFILES)
181 # install the .../include headers as links to the new ones
182 install-data-hook:
183         cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h pnglibconf.h
184         cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/png.h png.h
185         cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pngconf.h \
186                 pngconf.h
187         cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pnglibconf.h \
188                 pnglibconf.h
189         cd $(DESTDIR)$(pkgconfigdir); rm -f libpng.pc
190         cd $(DESTDIR)$(pkgconfigdir); $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc
191         rm -f $(DESTDIR)$(libdir)/libpng.la $(DESTDIR)$(libdir)/libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
193 # do evil things to libpng to cause libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ to be used
194 install-exec-hook:
195         cd $(DESTDIR)$(bindir); rm -f libpng-config
196         cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config
197         @set -x;\
198         cd $(DESTDIR)$(libdir);\
199         for ext in a la so so.@PNGLIB_MAJOR@@PNGLIB_MINOR@.@PNGLIB_RELEASE@ sl dylib dll.a; do\
200                 rm -f libpng.$$ext;\
201                 if test -f $(PNGLIB_BASENAME).$$ext; then\
202                        $(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\
203                 fi;\
204         done
206 uninstall-hook:
207         cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h pnglibconf.h
208         rm -f $(DESTDIR)$(pkgconfigdir)/libpng.pc
209         rm -f $(DESTDIR)$(bindir)/libpng-config
210         rm -f $(DESTDIR)$(libdir)/libpng.a