comparison zlib/Makefile.am @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents 77e2b8dfacca
children 1830386684a0
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
3 AUTOMAKE_OPTIONS = 1.8 cygnus 3 AUTOMAKE_OPTIONS = 1.8 cygnus
4 4
5 ACLOCAL_AMFLAGS = -I .. -I ../config 5 ACLOCAL_AMFLAGS = -I .. -I ../config
6 6
7 ZLIB_SOURCES = adler32.c compress.c crc32.c crc32.h deflate.c \ 7 ZLIB_SOURCES = adler32.c compress.c crc32.c crc32.h deflate.c \
8 deflate.h gzio.c infback.c inffast.c inffast.h inffixed.h inflate.c \ 8 deflate.h gzguts.h gzread.c gzclose.c gzwrite.c gzlib.c \
9 infback.c inffast.c inffast.h inffixed.h inflate.c \
9 inflate.h inftrees.c inftrees.h trees.c trees.h uncompr.c zconf.h \ 10 inflate.h inftrees.c inftrees.h trees.c trees.h uncompr.c zconf.h \
10 zconf.in.h zlib.h zutil.c zutil.h 11 zconf.h.in zlib.h zutil.c zutil.h
11 12
12 if TARGET_LIBRARY 13 if TARGET_LIBRARY
13 noinst_LTLIBRARIES = libzgcj_convenience.la 14 noinst_LTLIBRARIES = libzgcj_convenience.la
14 libzgcj_convenience_la_SOURCES = $(ZLIB_SOURCES) 15 libzgcj_convenience_la_SOURCES = $(ZLIB_SOURCES)
15 else 16 else
16 toolexeclib_LIBRARIES = libz.a 17 toolexeclib_LIBRARIES = libz.a
17 libz_a_SOURCES = $(ZLIB_SOURCES) 18 libz_a_SOURCES = $(ZLIB_SOURCES)
18 libz_a_CFLAGS = $(AM_CFLAGS) 19 libz_a_CFLAGS = $(AM_CFLAGS) $(PICFLAG)
19 endif 20 endif
20 21
21 # Work around what appears to be a GNU make bug handling MAKEFLAGS 22 # Work around what appears to be a GNU make bug handling MAKEFLAGS
22 # values defined in terms of make variables, as is the case for CC and 23 # values defined in terms of make variables, as is the case for CC and
23 # friends when we are called from the top level Makefile. 24 # friends when we are called from the top level Makefile.