]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libpng/lib/dist/Makefile.am
update
[l4.git] / l4 / pkg / libpng / lib / dist / Makefile.am
1 # Makefile.am:
2 #   Source file for Makefile.in (and hence Makefile)
3 #
4
5 PNGLIB_BASENAME= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
6
7 # libpng does not follow GNU file name conventions
8
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
13
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)
22
23 # man pages
24 dist_man_MANS= libpng.3 libpngpf.3 png.5
25
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@
30
31 # rules to build libpng, only build the old library on request
32 lib_LTLIBRARIES=libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
33 # EXTRA_LTLIBRARIES= libpng.la
34 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = png.c pngerror.c\
35         pngget.c pngmem.c pngpread.c pngread.c pngrio.c pngrtran.c pngrutil.c\
36         pngset.c pngtrans.c pngwio.c pngwrite.c pngwtran.c pngwutil.c\
37         png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h pngstruct.h
38
39 nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = pnglibconf.h
40
41 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_CPPFLAGS = @LIBPNG_DEFINES@
42
43 libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS = -no-undefined -export-dynamic \
44         -version-number @PNGLIB_MAJOR@@PNGLIB_MINOR@:@PNGLIB_RELEASE@:0
45
46 if HAVE_LD_VERSION_SCRIPT
47   # Versioned symbols and restricted exports
48   libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -Wl,--version-script=libpng.vers
49   libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.vers
50 else
51   # Only restricted exports when possible
52   libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS += -export-symbols libpng.sym
53   libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.sym
54 endif
55
56 #distribute headers in /usr/include/libpng/*
57 pkgincludedir= $(includedir)/$(PNGLIB_BASENAME)
58 pkginclude_HEADERS= png.h pngconf.h
59 nodist_pkginclude_HEADERS= pnglibconf.h
60
61 # pkg-config stuff, note that libpng.pc is always required in order
62 # to get the correct library
63 pkgconfigdir = @pkgconfigdir@
64 pkgconfig_DATA = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc
65
66 #extra source distribution files.
67 EXTRA_DIST= \
68         ANNOUNCE CHANGES INSTALL LICENSE README TODO \
69         pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
70         ${srcdir}/contrib ${srcdir}/projects ${srcdir}/scripts \
71         $(TESTS) \
72         CMakeLists.txt example.c libpng-manual.txt
73
74 SCRIPT_CLEANFILES=scripts/*.out scripts/*.chk scripts/pnglibconf.dfn
75
76 CLEANFILES= dfn.c dfn?.out pngout.png libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc \
77         libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config libpng.vers libpng.sym \
78         check.new pnglibconf.* symbols.new pngtest-log.txt \
79         $(SCRIPT_CLEANFILES)
80
81 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
82 config.sub configure depcomp install-sh ltmain.sh missing
83
84 # DFNCPP is normally just CPP - the C preprocessor - but on Solaris and maybe
85 # other operating systems (NeXT?) the C preprocessor selected by configure
86 # checks input tokens for validity - effectively it performs part of the ANSI-C
87 # parsing - and therefore fails with the .df files.  configure.ac has special
88 # checks for this and sets DFNCPP appropriately.
89 DFNCPP = @DFNCPP@
90
91 SUFFIXES = .chk .dfn .out
92
93 $(PNGLIB_BASENAME).pc: libpng.pc
94         cp libpng.pc $@
95
96 $(PNGLIB_BASENAME)-config: libpng-config
97         cp libpng-config $@
98
99 scripts/sym.out scripts/vers.out: png.h pngconf.h pnglibconf.h
100 scripts/symbols.out: png.h pngconf.h scripts/pnglibconf.h.prebuilt
101
102 libpng.sym: scripts/sym.out
103         rm -f $@
104         cp $? $@
105 libpng.vers: scripts/vers.out
106         rm -f $@
107         cp $? $@
108 pnglibconf.h: pnglibconf.out
109         rm -f $@
110         cp $? $@
111 scripts/pnglibconf.h.prebuilt:
112         @echo "This is a machine generated file, but if you want to make" >&2
113         @echo "a new one simply make 'scripts/pnglibconf.out' and copy that" >&2
114         @exit 1
115
116 # The following is necessary to ensure that the local pnglibconf.h is used, not
117 # an installed one (this can happen immediately after on a clean system if
118 # 'make test' is the first thing the user does.)
119 pngvalid.o pngtest.o: pnglibconf.h
120
121 # We must use -DPNG_NO_USE_READ_MACROS here even when the library may actually
122 # be built with PNG_USE_READ_MACROS; this stops the read macros interfering
123 # with the symbol file format.
124 SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0'\
125                 -DPNGLIB_VERSION='@PNGLIB_VERSION@'\
126                 -DSYMBOL_PREFIX='$(SYMBOL_PREFIX)'\
127                 -DPNG_NO_USE_READ_MACROS -DPNG_BUILDING_SYMBOL_TABLE
128
129 .dfn.out:
130         rm -f $@ dfn.c dfn?.out
131         test -d scripts || mkdir scripts
132         echo '#include "$<"' >dfn.c
133         $(DFNCPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) @LIBPNG_DEFINES@\
134             $(CPPFLAGS) $(SYMBOL_CFLAGS) dfn.c > dfn1.out
135         $(SED) -n -e 's|^.*PNG_DEFN_MAGIC-\(.*\)-PNG_DEFN_END.*$$|\1|p'\
136             dfn1.out >dfn2.out
137         $(SED) -e 's| *@@@ *||g' -e 's| *$$||' dfn2.out >dfn3.out
138         rm -f dfn.c dfn[12].out
139         mv dfn3.out $@
140
141 # The .dfn file for pnglibconf.h is machine generated
142 pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk
143         rm -f $@ dfn?.out
144         $(AWK) -f ${srcdir}/scripts/options.awk out=dfn1.out\
145             ${srcdir}/scripts/pnglibconf.dfa $(DFA_XTRA) 1>&2
146         $(AWK) -f ${srcdir}/scripts/options.awk out=dfn2.out dfn1.out 1>&2
147         rm dfn1.out
148         mv dfn2.out $@
149
150 # Symbol checks (.def and .out files should match)
151 scripts/symbols.chk: scripts/checksym.awk scripts/symbols.def scripts/symbols.out
152 .out.chk:
153         rm -f $@ symbols.new
154         $(AWK) -f ${srcdir}/scripts/checksym.awk ${srcdir}/scripts/${*F}.def\
155             $< >&2
156         mv symbols.new $@
157
158 # used on demand to regenerate the standard header, CPPFLAGS should
159 # be empty - no non-standard defines
160 scripts/pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk
161         rm -f $@ dfn?.out
162         test -z "$(CPPFLAGS)"
163         echo "com @PNGLIB_VERSION@ STANDARD API DEFINITION" |\
164         $(AWK) -f ${srcdir}/scripts/options.awk out=dfn1.out\
165             logunsupported=4 - ${srcdir}/scripts/pnglibconf.dfa 1>&2
166         $(AWK) -f ${srcdir}/scripts/options.awk out=dfn2.out dfn1.out 1>&2
167         rm dfn1.out
168         mv dfn2.out $@
169
170 $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS): png.h pngconf.h \
171         pnglibconf.h pngpriv.h pngdebug.h pnginfo.h pngstruct.h
172
173 test: check-am
174
175 # Extra checks
176 check: scripts/symbols.chk
177
178 # Don't distribute the generated script files
179 dist-hook:
180         cd '$(top_distdir)'; rm -f $(SCRIPT_CLEANFILES)
181
182 # install the .../include headers as links to the new ones
183 install-data-hook:
184         cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h pnglibconf.h
185         cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/png.h png.h
186         cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pngconf.h \
187                 pngconf.h
188         cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pnglibconf.h \
189                 pnglibconf.h
190         cd $(DESTDIR)$(pkgconfigdir); rm -f libpng.pc
191         cd $(DESTDIR)$(pkgconfigdir); $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc
192
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
205
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
211         rm -f $(DESTDIR)$(libdir)/libpng.la