Fixed style bugs in previous commit:

- don't comment out the old version; just modify it.
- don't 2 sets of 3 style bugs that weren't present in the old version.
This commit is contained in:
bde 2001-10-19 12:45:59 +00:00
parent 602d3a5092
commit 1eb768ee31

View File

@ -8,10 +8,8 @@ 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
CFLAGS+=-I. -I${.CURDIR} -I${.CURDIR}/../../../contrib/bc/h -DHAVE_CONFIG_H
#DPADD= ${LIBREADLINE} ${LIBTERMCAP}
#LDADD= -lreadline -ltermcap
DPADD += ${LIBEDIT} ${LIBTERMCAP}
LDADD += -ledit -ltermcap
DPADD= ${LIBEDIT} ${LIBTERMCAP}
LDADD= -ledit -ltermcap
EXAMPLES= ckbook.b pi.b primes.b twins.b
EXAMPDIR= /usr/share/examples/bc