xref: /original-bsd/old/prof/Makefile (revision 7e7b101a)
1#	@(#)Makefile	4.1 (Berkeley) 06/02/83
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
17