diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-12-14 18:49:11 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-12-14 18:49:11 +0000 |
commit | 37729557c90a1ad1cf5750023032f8fce2772148 (patch) | |
tree | 34c0fd03ee7b67136773a88793f4c48f6a1ca4b3 /fastjar/Makefile.in | |
parent | 990bee10e7f467d0a2eaed58363b69896553a648 (diff) | |
download | gcc-37729557c90a1ad1cf5750023032f8fce2772148.zip gcc-37729557c90a1ad1cf5750023032f8fce2772148.tar.gz gcc-37729557c90a1ad1cf5750023032f8fce2772148.tar.bz2 |
configure.in (fastjar_warn_cflags): Set when using gcc.
* configure.in (fastjar_warn_cflags): Set when using gcc.
* Makefile.am (AM_CFLAGS): Set to @fastjar_warn_cflags@.
From-SVN: r38255
Diffstat (limited to 'fastjar/Makefile.in')
-rw-r--r-- | fastjar/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fastjar/Makefile.in b/fastjar/Makefile.in index c797595..6fb57b4 100644 --- a/fastjar/Makefile.in +++ b/fastjar/Makefile.in @@ -74,6 +74,7 @@ VERSION = @VERSION@ ZDEPS = @ZDEPS@ ZINCS = @ZINCS@ ZLIBS = @ZLIBS@ +fastjar_warn_cflags = @fastjar_warn_cflags@ 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)" "JC1FLAGS=$(JC1FLAGS)" "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)" "exec_prefix=$(exec_prefix)" "infodir=$(infodir)" "libdir=$(libdir)" "prefix=$(prefix)" "AR=$(AR)" "AS=$(AS)" "CC=$(CC)" "CXX=$(CXX)" "LD=$(LD)" "LIBCFLAGS=$(LIBCFLAGS)" "NM=$(NM)" "PICFLAG=$(PICFLAG)" "RANLIB=$(RANLIB)" "DESTDIR=$(DESTDIR)" @@ -87,6 +88,8 @@ fastjar_DEPENDENCIES = $(ZDEPS) grepjar_SOURCES = jargrep.c dostime.c compress.c pushback.c jartool.h zipfile.h dostime.h compress.h pushback.h grepjar_LDADD = $(ZLIBS) grepjar_DEPENDENCIES = $(ZDEPS) + +AM_CFLAGS = @fastjar_warn_cflags@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h @@ -113,7 +116,7 @@ configure.in install-defs.sh.in install-sh missing mkinstalldirs DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = gtar +TAR = gnutar GZIP_ENV = --best SOURCES = $(fastjar_SOURCES) $(grepjar_SOURCES) OBJECTS = $(fastjar_OBJECTS) $(grepjar_OBJECTS) |