1# $OpenBSD: Makefile,v 1.4 2006/06/30 19:02:28 otto Exp $ 2 3PROG= bc 4SRCS= bc.y scan.l 5CPPFLAGS+= -I. -I${.CURDIR} 6CFLAGS+= -Wall -Wno-unused 7YFLAGS+= 8 9beforeinstall: 10 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/bc.library \ 11 ${DESTDIR}/usr/share/misc 12 13# These get installed verbatim 14.if make(install) 15SUBDIR+= USD.doc 16.endif 17 18.include <bsd.prog.mk> 19