2010-03-16 Segher Boessenkool <segher@kernel.crashing.org>
[deliverable/binutils-gdb.git] / gprof / Makefile.am
CommitLineData
252b5132
RH
1## Process this file with automake to generate Makefile.in
2
fd9b71a8 3AUTOMAKE_OPTIONS = 1.11 foreign no-dist no-texinfo.tex
79887925 4ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
fd9b71a8 5TEXINFO_TEX = $(top_srcdir)/../texinfo/texinfo.tex
252b5132
RH
6
7SUFFIXES = .m
8
9SUBDIRS = po
10
41b49281
AM
11BASEDIR = $(srcdir)/..
12BFDDIR = $(BASEDIR)/bfd
13INCDIR = $(BASEDIR)/include
14
a2d91340 15WARN_CFLAGS = @WARN_CFLAGS@
9e9b66a9 16NO_WERROR = @NO_WERROR@
a2d91340
AC
17AM_CFLAGS = $(WARN_CFLAGS)
18
14ec8efd 19AM_CPPFLAGS = -DDEBUG -I../bfd -I$(srcdir)/../include \
92f01d61 20 -I$(srcdir)/../bfd @INCINTL@ -I. \
92f01d61 21 -DLOCALEDIR="\"$(datadir)/locale\""
252b5132
RH
22
23bin_PROGRAMS = gprof
24
25## Convenience var listing pure sources.
26sources = basic_blocks.c call_graph.c cg_arcs.c cg_dfn.c \
27 cg_print.c corefile.c gmon_io.c gprof.c hertz.c hist.c source.c \
28 search_list.c symtab.c sym_ids.c utils.c \
ec0806ec 29 i386.c alpha.c vax.c tahoe.c sparc.c mips.c
252b5132 30gprof_SOURCES = $(sources) flat_bl.c bsd_callg_bl.c fsf_callg_bl.c
20e95c23
DJ
31gprof_DEPENDENCIES = ../bfd/libbfd.la ../libiberty/libiberty.a $(LIBINTL_DEP)
32gprof_LDADD = ../bfd/libbfd.la ../libiberty/libiberty.a $(LIBINTL)
252b5132
RH
33
34noinst_HEADERS = \
35 basic_blocks.h call_graph.h cg_arcs.h cg_dfn.h cg_print.h \
36 corefile.h gmon.h gmon_io.h gmon_out.h gprof.h hertz.h hist.h \
37 search_list.h source.h sym_ids.h symtab.h utils.h
38
252b5132 39BUILT_SOURCES = flat_bl.c bsd_callg_bl.c fsf_callg_bl.c
c45021f2 40EXTRA_DIST = $(BUILT_SOURCES) bbconv.pl $(man_MANS)
252b5132 41
c45021f2 42diststuff: $(BUILT_SOURCES) info $(man_MANS)
252b5132 43
253a2395
NC
44# This empty rule is a hack against gmake patched by Apple.
45%.o:%.m
46
252b5132
RH
47.m.c:
48 awk -f $(srcdir)/gen-c-prog.awk > ./$*.c \
49 FUNCTION=`(echo $*|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \
50 FILE=$*.m $(srcdir)/$*.m
51
52POTFILES = $(sources) $(noinst_HEADERS)
53po/POTFILES.in: @MAINT@ Makefile
323ee3f4 54 for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
252b5132
RH
55 && mv tmp $(srcdir)/po/POTFILES.in
56
40f90528
AM
57MANCONF = -Dman
58
e49e529d 59TEXI2POD = perl $(srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
40f90528
AM
60
61POD2MAN = pod2man --center="GNU" --release="binutils-$(VERSION)" --section=1
62
252b5132 63info_TEXINFOS = gprof.texi
37d037c1 64gprof_TEXINFOS = config.texi
252b5132
RH
65man_MANS = gprof.1
66
9975e4c4
DJ
67AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc
68TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc
e49e529d 69
dff70155
MM
70config.texi:
71 echo "@set top_srcdir $(top_srcdir)" >> ./config.texi
72
40f90528
AM
73# Build the man page from the texinfo file
74# The sed command removes the no-adjust Nroff command so that
75# the man output looks standard.
dff70155 76gprof.1: $(srcdir)/gprof.texi config.texi
c45021f2 77 touch $@
40f90528
AM
78 -$(TEXI2POD) $(MANCONF) -Dgprof < $(srcdir)/gprof.texi > gprof.pod
79 -($(POD2MAN) gprof.pod | \
c45021f2
NC
80 sed -e '/^.if n .na/d' > $@.T$$$$ && \
81 mv -f $@.T$$$$ $@) || \
82 (rm -f $@.T$$$$ && exit 1)
40f90528
AM
83 rm -f gprof.pod
84
d5fbea21
DJ
85MAINTAINERCLEANFILES = gprof.info
86
87# Automake 1.9 will only build info files in the objdir if they are
88# mentioned in DISTCLEANFILES. It doesn't have to be unconditional,
89# though, so we use a bogus condition.
90if GENINSRC_NEVER
91DISTCLEANFILES = gprof.info
92endif
This page took 0.489456 seconds and 4 git commands to generate.