1999-05-05 12:04:39 +02:00
|
|
|
## Process this file with automake to create Makefile.in.
|
|
|
|
|
2004-06-15 16:47:55 +02:00
|
|
|
AUTOMAKE_OPTIONS = 1.8 cygnus
|
1999-05-05 12:04:39 +02:00
|
|
|
|
2007-04-14 21:52:27 +02:00
|
|
|
ACLOCAL_AMFLAGS = -I .. -I ../config
|
2007-01-17 20:48:52 +01:00
|
|
|
|
2004-10-11 20:45:43 +02:00
|
|
|
ZLIB_SOURCES = adler32.c compress.c crc32.c crc32.h deflate.c \
|
|
|
|
deflate.h gzio.c infback.c inffast.c inffast.h inffixed.h inflate.c \
|
|
|
|
inflate.h inftrees.c inftrees.h trees.c trees.h uncompr.c zconf.h \
|
|
|
|
zconf.in.h zlib.h zutil.c zutil.h
|
1999-05-05 12:04:39 +02:00
|
|
|
|
2000-09-03 21:54:20 +02:00
|
|
|
if TARGET_LIBRARY
|
2002-03-17 01:35:21 +01:00
|
|
|
noinst_LTLIBRARIES = libzgcj_convenience.la
|
|
|
|
libzgcj_convenience_la_SOURCES = $(ZLIB_SOURCES)
|
2000-09-03 21:54:20 +02:00
|
|
|
else
|
|
|
|
toolexeclib_LIBRARIES = libz.a
|
|
|
|
libz_a_SOURCES = $(ZLIB_SOURCES)
|
2004-04-12 13:10:26 +02:00
|
|
|
libz_a_CFLAGS = $(AM_CFLAGS)
|
2000-09-03 21:54:20 +02:00
|
|
|
endif
|
1999-07-19 21:11:54 +02:00
|
|
|
|
|
|
|
# Work around what appears to be a GNU make bug handling MAKEFLAGS
|
|
|
|
# values defined in terms of make variables, as is the case for CC and
|
|
|
|
# friends when we are called from the top level Makefile.
|
|
|
|
AM_MAKEFLAGS = \
|
|
|
|
"AR_FLAGS=$(AR_FLAGS)" \
|
|
|
|
"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
|
|
|
|
"CFLAGS=$(CFLAGS)" \
|
|
|
|
"CXXFLAGS=$(CXXFLAGS)" \
|
|
|
|
"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
|
|
|
|
"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
|
|
|
|
"INSTALL=$(INSTALL)" \
|
|
|
|
"INSTALL_DATA=$(INSTALL_DATA)" \
|
|
|
|
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
|
|
|
|
"INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
|
|
|
|
"LDFLAGS=$(LDFLAGS)" \
|
|
|
|
"LIBCFLAGS=$(LIBCFLAGS)" \
|
|
|
|
"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
|
|
|
|
"MAKE=$(MAKE)" \
|
|
|
|
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
|
|
|
|
"PICFLAG=$(PICFLAG)" \
|
|
|
|
"PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
|
|
|
|
"SHELL=$(SHELL)" \
|
|
|
|
"EXPECT=$(EXPECT)" \
|
|
|
|
"RUNTEST=$(RUNTEST)" \
|
|
|
|
"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
|
|
|
|
"exec_prefix=$(exec_prefix)" \
|
|
|
|
"infodir=$(infodir)" \
|
|
|
|
"libdir=$(libdir)" \
|
|
|
|
"prefix=$(prefix)" \
|
|
|
|
"tooldir=$(tooldir)" \
|
|
|
|
"AR=$(AR)" \
|
|
|
|
"AS=$(AS)" \
|
|
|
|
"CC=$(CC)" \
|
|
|
|
"CXX=$(CXX)" \
|
|
|
|
"LD=$(LD)" \
|
|
|
|
"LIBCFLAGS=$(LIBCFLAGS)" \
|
|
|
|
"NM=$(NM)" \
|
|
|
|
"PICFLAG=$(PICFLAG)" \
|
|
|
|
"RANLIB=$(RANLIB)" \
|
|
|
|
"DESTDIR=$(DESTDIR)"
|
2006-06-13 23:15:06 +02:00
|
|
|
|
2007-03-02 01:00:52 +01:00
|
|
|
# No html support.
|
|
|
|
# No install-html or install-pdf support in automake yet
|
|
|
|
.PHONY: html install-html install-pdf
|
2006-06-13 23:15:06 +02:00
|
|
|
|
|
|
|
html:
|
|
|
|
install-html:
|
2007-03-02 01:00:52 +01:00
|
|
|
install-pdf:
|
2006-06-13 23:15:06 +02:00
|
|
|
|