aboutsummaryrefslogtreecommitdiff
path: root/gprof/Makefile.in
blob: c02f34bfe6b8b114fa01c98dd8947f0d1cdb8fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#	@(#)Makefile	5.17 (Berkeley) 5/11/90

srcdir = .

prefix = /usr/local

program_prefix =
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
tooldir = $(libdir)

datadir = $(prefix)/lib

INSTALL = install -c
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL)

#### host and target dependent Makefile fragments come in here.
###

PROG=	gprof
SRCS=	gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \
	printgprof.c printlist.c
LIBS = ../bfd/libbfd.a ../libiberty/libiberty.a

OBJS=	gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \
	printgprof.o printlist.o

CFLAGS=	
.c.o:
	$(CC) -c $(CFLAGS) -I$(srcdir) -I$(srcdir)/../include -DMACHINE_H=\"${MACHINE}.h\" ${TCFLAGS} ${HCFLAGS} $<

all:	${PROG}

.PHONY: check
check:

install: all
	$(INSTALL_DATA) ${srcdir}/gprof.flat ${DESTDIR}$(datadir)
	$(INSTALL_DATA) ${srcdir}/gprof.callg ${DESTDIR}$(datadir)
	$(INSTALL_PROGRAM) $(PROG) ${DESTDIR}$(bindir)

$(PROG):	$(OBJS)
	$(CC) $(CFLAGS) $(OBJS) -o $(PROG) $(LIBS)

clean:
	-rm -f $(OBJS) core gprof nohup.out
# These get around a bug in Sun Make in SunOS 4.1.1 and Solaris 2
gprof.o: gprof.c
arcs.o: arcs.c
dfn.o: dfn.c
lookup.o: lookup.c
${MACHINE}.o: ${MACHINE}.c
hertz.o: hertz.c
printgprof.o: printgprof.c
printlist.o: printlist.c