blob: a6d3743c9b4e559bc4d42cde76d60eecda70a0d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.3 2006/05/27 22:53:44 deraadt Exp $
PROG= bc
SRCS= bc.y scan.l
CPPFLAGS+= -I. -I${.CURDIR}
CFLAGS+= -Wall -Wno-unused
YFLAGS+=
CLEANFILES+= bc.c y.tab.h scan.c lex.yy.c
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>
|