mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 16:50:25 -04:00
Start fresh on master, only apply needed patches on top now. Upstream commit: 56279fdef34eb28a4655b489b992c651bd8379fc Taken from: FreeBSD
16 lines
301 B
Makefile
16 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>
|