badaccf0f2
Fixed slightly wrong order of -I's in CFLAGS. FIxed the usual style bugs in DPADD and LDADD.
16 lines
460 B
Makefile
16 lines
460 B
Makefile
# $Id: Makefile,v 1.13 1998/05/01 19:13:41 ache Exp $
|
|
|
|
.PATH: ${.CURDIR}/../../../contrib/bc/bc \
|
|
${.CURDIR}/../../../contrib/bc/lib \
|
|
${.CURDIR}/../../../contrib/bc/doc
|
|
|
|
PROG= bc
|
|
SRCS= bc.y execute.c global.c load.c main.c scan.l storage.c util.c \
|
|
number.c getopt.c getopt1.c
|
|
YACC= bison -y
|
|
CFLAGS+=-I. -I${.CURDIR} -I${.CURDIR}/../../../contrib/bc/h -DHAVE_CONFIG_H
|
|
DPADD= ${LIBREADLINE} ${LIBTERMCAP}
|
|
LDADD= -lreadline -ltermcap
|
|
|
|
.include <bsd.prog.mk>
|