59d7f5e155
Also, add a missing LIBPANEL dependency for lldb Approved by: rpaulo (mentor) Suggested by: brooks MFC after: 5 days Phabric: D675 (as part of a larger diff) PR: 192762
17 lines
301 B
Makefile
17 lines
301 B
Makefile
# $FreeBSD$
|
|
# $OpenBSD: Makefile,v 1.7 2013/09/19 16:12:00 otto Exp $
|
|
|
|
PROG= bc
|
|
SRCS= bc.y scan.l tty.c
|
|
CFLAGS+= -I. -I${.CURDIR}
|
|
|
|
DPADD+= ${LIBEDIT} ${LIBNCURSESW}
|
|
LDADD+= -ledit -lncursesw
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
FILES+= bc.library
|
|
FILESDIR=${SHAREDIR}/misc
|
|
|
|
.include <bsd.prog.mk>
|