blob: ca9e7e08f5523409ea7562f0fb0efa6e9de6aeba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.2 2003/11/03 19:51:42 otto Exp $
PROG= bc
SRCS= bc.c scan.c
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>
|