xref: /original-bsd/usr.bin/pascal/pxref/Makefile (revision c3e32dec)
1#	@(#)Makefile	8.1 (Berkeley) 06/06/93
2
3MAN1=	pxref.0
4
5all: pxref ${MAN1}
6
7lint depend:
8
9clean cleandir:
10	rm -f pxref pxref.o ${MAN1}
11
12pxref: pxref.p
13	pc -w ${.CURDIR}/pxref.p -o ${.TARGET}
14
15beforeinstall:
16	install ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} pxref \
17	    ${DESTDIR}/usr/bin
18
19.include <bsd.prog.mk>
20