2000-12-09 04:08:23 +01:00
|
|
|
# Process this with automake to create Makefile.in
|
|
|
|
|
2004-11-13 17:38:04 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I ../config
|
2002-01-13 19:05:25 +01:00
|
|
|
|
2000-12-09 04:08:23 +01: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)" \
|
|
|
|
"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)"
|
|
|
|
|
2004-07-05 19:40:38 +02:00
|
|
|
AM_CPPFLAGS = -I. -I$(top_srcdir) $(ZINCS) -I$(top_srcdir)/../include
|
2002-01-10 00:22:20 +01:00
|
|
|
|
|
|
|
LIBIBERTY = ../libiberty/libiberty.a
|
2000-12-09 04:08:23 +01:00
|
|
|
|
2004-07-24 01:34:17 +02:00
|
|
|
bin_PROGRAMS = fastjar grepjar
|
|
|
|
fastjar_SOURCES = jartool.c dostime.c compress.c pushback.c shift.c jartool.h \
|
2004-07-06 23:40:08 +02:00
|
|
|
zipfile.h dostime.h compress.h pushback.h shift.h
|
2004-07-24 01:34:17 +02:00
|
|
|
fastjar_LDADD = $(ZLIBS) $(LIBIBERTY)
|
|
|
|
fastjar_DEPENDENCIES = $(ZDEPS) $(LIBIBERTY)
|
|
|
|
fastjar_CPPFLAGS = $(AM_CPPFLAGS) -DWITH_SHIFT_DOWN
|
2002-01-10 00:22:20 +01:00
|
|
|
|
|
|
|
grepjar_SOURCES = jargrep.c dostime.c compress.c pushback.c jartool.h \
|
|
|
|
zipfile.h dostime.h compress.h pushback.h
|
|
|
|
grepjar_LDADD = $(ZLIBS) $(LIBIBERTY)
|
|
|
|
grepjar_DEPENDENCIES = $(ZDEPS) $(LIBIBERTY)
|
2000-12-09 04:08:23 +01:00
|
|
|
|
2000-12-14 19:49:11 +01:00
|
|
|
AM_CFLAGS = @fastjar_warn_cflags@
|
2003-12-01 03:58:36 +01:00
|
|
|
AM_MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include
|
2002-09-11 00:09:53 +02:00
|
|
|
|
2002-09-12 02:40:12 +02:00
|
|
|
TEXINFO_TEX = ../gcc/doc/include/texinfo.tex
|
|
|
|
info_TEXINFOS = fastjar.texi
|
|
|
|
fastjar_TEXINFOS = \
|
|
|
|
../gcc/doc/include/gcc-common.texi \
|
|
|
|
../gcc/doc/include/gpl.texi
|
2004-07-24 01:34:17 +02:00
|
|
|
man_MANS = fastjar.1 grepjar.1
|
2002-09-12 02:40:12 +02:00
|
|
|
EXTRA_DIST = $(man_MANS)
|
|
|
|
|
2002-09-11 00:09:53 +02:00
|
|
|
TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl
|
|
|
|
POD2MAN = pod2man --center="GNU" --release="gcc-@gcc_version@"
|
|
|
|
|
2004-07-05 19:40:38 +02:00
|
|
|
.pod.1:
|
2003-11-03 14:21:00 +01:00
|
|
|
-($(POD2MAN) --section=1 $< > $(@).T$$$$ && \
|
|
|
|
mv -f $(@).T$$$$ $@) || \
|
|
|
|
(rm -f $(@).T$$$$ && exit 1)
|
|
|
|
|
2004-07-24 01:34:17 +02:00
|
|
|
.INTERMEDIATE: fastjar.pod grepjar.pod
|
2003-11-03 14:21:00 +01:00
|
|
|
|
2004-07-24 01:34:17 +02:00
|
|
|
fastjar.pod: $(srcdir)/fastjar.texi
|
|
|
|
-$(TEXI2POD) -D fastjar $< > $@
|
2002-09-11 00:09:53 +02:00
|
|
|
|
2003-11-03 14:21:00 +01:00
|
|
|
grepjar.pod: $(srcdir)/fastjar.texi
|
|
|
|
-$(TEXI2POD) -D grepjar $< > $@
|
2004-04-12 22:29:49 +02:00
|
|
|
|
|
|
|
# GCC LOCAL CHANGE
|
|
|
|
# The following commands allow us to release tarballs with the man pages
|
|
|
|
# and info documentation prebuilt. This feature is enabled via
|
|
|
|
# --enable-generated-files-in-srcdir in the configure script.
|
|
|
|
|
|
|
|
if GENINSRC
|
|
|
|
STAMP_GENINSRC = stamp-geninsrc
|
|
|
|
else
|
|
|
|
STAMP_GENINSRC =
|
|
|
|
endif
|
|
|
|
|
|
|
|
all-local: $(STAMP_GENINSRC)
|
|
|
|
|
2004-07-24 01:34:17 +02:00
|
|
|
stamp-geninsrc: fastjar.1 grepjar.1 fastjar.info
|
|
|
|
-cp -p $(top_builddir)/fastjar.1 $(srcdir)/fastjar.1
|
2004-04-12 22:29:49 +02:00
|
|
|
-cp -p $(top_builddir)/grepjar.1 $(srcdir)/grepjar.1
|
|
|
|
-cp -p $(top_builddir)/fastjar.info $(srcdir)/fastjar.info
|
|
|
|
touch $@
|
|
|
|
|
2004-08-11 02:56:23 +02:00
|
|
|
CLEANFILES = stamp-geninsrc fastjar.info
|
2004-07-24 01:34:17 +02:00
|
|
|
MAINTAINERCLEANFILES = $(srcdir)/fastjar.1 \
|
2004-04-12 22:29:49 +02:00
|
|
|
$(srcdir)/grepjar.1 \
|
|
|
|
$(srcdir)/fastjar.info
|