1 1.1 phil .include <bsd.own.mk> 2 1.1 phil 3 1.1 phil PROG= bc 4 1.1 phil BINDIR= /usr/bin 5 1.1 phil 6 1.1 phil SRCDIR= ${.CURDIR}/../dist 7 1.1 phil .PATH: ${SRCDIR} 8 1.1 phil 9 1.1 phil SRCS= global.c load.c util.c execute.c main.c number.c storage.c \ 10 1.1 phil bc.y scan.l warranty.c 11 1.1 phil 12 1.1 phil CPPFLAGS+= -I. -I${SRCDIR} -D_POSIX_SOURCE 13 1.1 phil CFLAGS+= -funsigned-char 14 1.1 phil YFLAGS+= 15 1.1 phil LFLAGS+= -I8 16 1.1 phil YHEADER=1 17 1.1 phil WARNS=5 18 1.1 phil 19 1.1 phil LDADD+= -ll -ledit -ltermcap 20 1.1 phil DPADD+= ${LIBL} ${LIBEDIT} ${LIBTERMCAP} 21 1.1 phil 22 1.1 phil .include <bsd.prog.mk> 23