xref: /original-bsd/usr.bin/bc/Makefile (revision c3e32dec)
1#	@(#)Makefile	8.1 (Berkeley) 06/06/93
2
3PROG=	bc
4SRCS=	bc.c
5CFLAGS+=-w -I${.CURDIR}
6CLEANFILES=	bc.c y.tab.h
7
8beforeinstall:
9	install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/bc.library \
10	    ${DESTDIR}/usr/share/misc
11
12.include <bsd.prog.mk>
13