From: Tom London Date: Fri, 9 Feb 1979 04:19:27 +0000 (-0500) Subject: Bell 32V development X-Git-Tag: Bell-32V~227 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/562f434ea236ce71893a6a6512a65f961461e793?ds=sidebyside Bell 32V development Work on file usr/src/cmd/prof/Makefile Co-Authored-By: John Reiser Synthesized-from: 32v --- diff --git a/usr/src/cmd/prof/Makefile b/usr/src/cmd/prof/Makefile new file mode 100644 index 0000000000..a646ad45ea --- /dev/null +++ b/usr/src/cmd/prof/Makefile @@ -0,0 +1,11 @@ +# If you don't want to plot, take out the -Dplot and the ref. to plot.a +PLOT = /usr/lib/libplot.a -Dplot +CFLAGS=-O +prof: prof.o + $(CC) -o prof prof.o $(PLOT) + +install: + install -s prof $(DESTDIR)/usr/bin + +clean : + rm -f *.o