OSDN Git Service

PR fortran/13201
[pf3gnuchains/gcc-fork.git] / fastjar / Makefile.am
1 # Process this with automake to create Makefile.in
2
3 ## We definitely don't want dependency tracking when using automake 1.4.
4 AUTOMAKE_OPTIONS = no-dependencies
5
6 # Work around what appears to be a GNU make bug handling MAKEFLAGS
7 # values defined in terms of make variables, as is the case for CC and
8 # friends when we are called from the top level Makefile.
9 AM_MAKEFLAGS = \
10         "AR_FLAGS=$(AR_FLAGS)" \
11         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
12         "CFLAGS=$(CFLAGS)" \
13         "CXXFLAGS=$(CXXFLAGS)" \
14         "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
15         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
16         "INSTALL=$(INSTALL)" \
17         "INSTALL_DATA=$(INSTALL_DATA)" \
18         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
19         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
20         "JC1FLAGS=$(JC1FLAGS)" \
21         "LDFLAGS=$(LDFLAGS)" \
22         "LIBCFLAGS=$(LIBCFLAGS)" \
23         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
24         "MAKE=$(MAKE)" \
25         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
26         "PICFLAG=$(PICFLAG)" \
27         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
28         "SHELL=$(SHELL)" \
29         "exec_prefix=$(exec_prefix)" \
30         "infodir=$(infodir)" \
31         "libdir=$(libdir)" \
32         "prefix=$(prefix)" \
33         "AR=$(AR)" \
34         "AS=$(AS)" \
35         "CC=$(CC)" \
36         "CXX=$(CXX)" \
37         "LD=$(LD)" \
38         "LIBCFLAGS=$(LIBCFLAGS)" \
39         "NM=$(NM)" \
40         "PICFLAG=$(PICFLAG)" \
41         "RANLIB=$(RANLIB)" \
42         "DESTDIR=$(DESTDIR)"
43
44 AM_CPPFLAGS = -I. -I$(top_srcdir) $(ZINCS) -I$(top_srcdir)/../include
45
46 LIBIBERTY = ../libiberty/libiberty.a
47
48 bin_PROGRAMS = jar grepjar
49 jar_SOURCES = jartool.c dostime.c compress.c pushback.c shift.c jartool.h \
50 zipfile.h dostime.h compress.h pushback.h shift.h
51 jar_LDADD = $(ZLIBS) $(LIBIBERTY)
52 jar_DEPENDENCIES = $(ZDEPS) $(LIBIBERTY)
53 jar_CPPFLAGS = $(AM_CPPFLAGS) -DWITH_SHIFT_DOWN
54
55 grepjar_SOURCES = jargrep.c dostime.c compress.c pushback.c jartool.h \
56 zipfile.h dostime.h compress.h pushback.h
57 grepjar_LDADD = $(ZLIBS) $(LIBIBERTY)
58 grepjar_DEPENDENCIES = $(ZDEPS) $(LIBIBERTY)
59
60 AM_CFLAGS = @fastjar_warn_cflags@
61 AM_MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include
62
63 TEXINFO_TEX = ../gcc/doc/include/texinfo.tex
64 info_TEXINFOS = fastjar.texi
65 fastjar_TEXINFOS = \
66         ../gcc/doc/include/gcc-common.texi \
67         ../gcc/doc/include/gpl.texi
68 man_MANS = jar.1 grepjar.1
69 EXTRA_DIST = $(man_MANS)
70
71 TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl
72 POD2MAN = pod2man --center="GNU" --release="gcc-@gcc_version@"
73
74 .pod.1:
75         -($(POD2MAN) --section=1 $< > $(@).T$$$$ && \
76                 mv -f $(@).T$$$$ $@) || \
77                 (rm -f $(@).T$$$$ && exit 1)
78
79 .INTERMEDIATE: jar.pod grepjar.pod
80
81 jar.pod: $(srcdir)/fastjar.texi
82         -$(TEXI2POD) -D jar $< > $@
83
84 grepjar.pod: $(srcdir)/fastjar.texi
85         -$(TEXI2POD) -D grepjar $< > $@
86
87 # GCC LOCAL CHANGE
88 # The following commands allow us to release tarballs with the man pages
89 # and info documentation prebuilt.  This feature is enabled via 
90 # --enable-generated-files-in-srcdir in the configure script.
91
92 if GENINSRC
93 STAMP_GENINSRC = stamp-geninsrc
94 else
95 STAMP_GENINSRC =
96 endif
97
98 all-local: $(STAMP_GENINSRC) 
99
100 stamp-geninsrc: jar.1 grepjar.1 fastjar.info
101         -cp -p $(top_builddir)/jar.1 $(srcdir)/jar.1
102         -cp -p $(top_builddir)/grepjar.1 $(srcdir)/grepjar.1
103         -cp -p $(top_builddir)/fastjar.info $(srcdir)/fastjar.info
104         touch $@
105
106 CLEANFILES = stamp-geninsrc
107 MAINTAINERCLEANFILES = $(srcdir)/jar.1 \
108                        $(srcdir)/grepjar.1 \
109                        $(srcdir)/fastjar.info