tcp: Make setsockopt(2) TCP_{NODELAY,NOPUSH,NOOPT,FASTKEEP} asynchronous
[dragonfly.git] / gnu / usr.bin / binutils224 / gprof / Makefile
bloba70bf3ff0d01138ac9bca44b939c1544e13199db
1 .include "../Makefile.inc1"
2 .include "../Makefile.bu"
4 .PATH: ${SRCDIR}/gprof
6 PROG= gprof
7 SRCS= basic_blocks.c \
8 call_graph.c \
9 cg_arcs.c \
10 cg_dfn.c \
11 cg_print.c \
12 corefile.c \
13 gmon_io.c \
14 gprof.c \
15 hertz.c \
16 hist.c \
17 source.c \
18 search_list.c \
19 symtab.c \
20 sym_ids.c \
21 utils.c \
22 i386.c \
23 alpha.c \
24 vax.c \
25 tahoe.c \
26 sparc.c \
27 mips.c \
28 aarch64.c \
29 flat_bl.c \
30 bsd_callg_bl.c \
31 fsf_callg_bl.c
32 MFILE= gprof${MANPAGEVER}.1
33 MAN= ${MFILE}
35 CFLAGS= -DHAVE_CONFIG_H
36 CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../libbfd -I${.OBJDIR}/../libbfd
37 CFLAGS+=-I${SRCDIR}/include -I${SRCDIR}/bfd
39 ${MFILE}: ${.CURDIR}/gprof.1
40 cp ${.ALLSRC} ${.TARGET}
42 flat_bl.c:
43 /usr/bin/awk -f ${SRCDIR}/gprof/gen-c-prog.awk > ${.TARGET} \
44 FUNCTION=`(echo flat_bl|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \
45 FILE=flat_bl.m ${SRCDIR}/gprof/flat_bl.m
47 bsd_callg_bl.c:
48 /usr/bin/awk -f ${SRCDIR}/gprof/gen-c-prog.awk > ${.TARGET} \
49 FUNCTION=`(echo bsd_callg_bl|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \
50 FILE=bsd_callg_bl.m ${SRCDIR}/gprof/bsd_callg_bl.m
52 fsf_callg_bl.c:
53 /usr/bin/awk -f ${SRCDIR}/gprof/gen-c-prog.awk > ${.TARGET} \
54 FUNCTION=`(echo fsf_callg_bl|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \
55 FILE=fsf_callg_bl.m ${SRCDIR}/gprof/fsf_callg_bl.m
57 CLEANFILES+= ${MFILE} \
58 flat_bl.c \
59 bsd_callg_bl.c \
60 fsf_callg_bl.c
62 .if defined(IS_PRIMARY)
63 MLINKS+= ${MFILE} gprof.1
64 .endif
66 .include <bsd.prog.mk>