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