man macros distributed with 4.1BSD
[unix-history] / usr / src / old / prof / Makefile
CommitLineData
7c9f0560
SL
1# @(#)Makefile 4.1 (Berkeley) %G%
2#
3# If you don't want to plot, take out the -Dplot and the ref. to plot.a
4PLOT = -lplot -Dplot
5CFLAGS=-O
6prof: prof.o
7 $(CC) -o prof prof.o $(PLOT)
8
9prof.o: prof.c
10 cc -c $(CFLAGS) $(PLOT) prof.c
11
12install:
13 install -s prof $(DESTDIR)/usr/bin
14
15clean :
16 rm -f *.o prof