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