freebsd_amp_hwpstate/gnu/usr.bin/bc/Makefile

26 lines
680 B
Makefile
Raw Normal View History

# $Id: Makefile,v 1.6 1998/04/29 22:05:23 andreas Exp $
1996-11-04 03:55:26 +00:00
.include "${.CURDIR}/../Makefile.inc"
1996-11-04 03:55:26 +00:00
.PATH: ${.CURDIR}/../../../contrib/bc/bc \
${.CURDIR}/../../../contrib/bc/lib \
${.CURDIR}/../../../contrib/bc/doc
PROG= bc
BCSRCS= execute.c global.c load.c main.c storage.c util.c \
number.c getopt.c getopt1.c
GENSRCS= bc.c scan.c
SRCS= ${GENSRCS} ${BCSRCS}
MAN1= bc.1
YACC= bison -y
CFLAGS+= -DHAVE_VPRINTF=1 -DSTDC_HEADERS=1 -DHAVE_ISGRAPH=1 \
-DHAVE_LIMITS_H=1 -DHAVE_STDARG_H=1 -DHAVE_STDDEF_H=1 \
-DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_UNISTD_H=1 \
-I${.CURDIR}/../../../contrib/bc/h -I${.CURDIR}
CLEANFILES+= ${GENSRCS} y.tab.h
1993-06-19 00:26:18 +00:00
.include <bsd.prog.mk>