diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-20 14:29:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-20 14:29:49 +0000 |
commit | 207e5daa6c975178430826e2f56d6dc9b506edc2 (patch) | |
tree | 862bfeb1d3a3db118834ad4ce102b9a46475ead5 /gnu | |
parent | 0aa1a8db289bbb973f1564199fdfeaabb2e2486a (diff) |
bc is a wrapper that runs gnubc on a pipe. bc is non-interactive gnubc, basically
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/bc/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/usr.bin/bc/Makefile b/gnu/usr.bin/bc/Makefile index 116a4da2938..4185bdeb4bf 100644 --- a/gnu/usr.bin/bc/Makefile +++ b/gnu/usr.bin/bc/Makefile @@ -1,9 +1,12 @@ # $NetBSD: Makefile,v 1.9 1994/12/02 00:43:17 phil Exp $ -PROG= bc +SUBDIR= bcwrap + +PROG= gnubc CFLAGS+=-D_POSIX_SOURCE -DDOT_IS_LAST -I. -I${.CURDIR} LFLAGS+=-I8 SRCS= bc.c scan.c util.c main.c number.c storage.c load.c execute.c global.c +MAN= bc.1 LDADD+= -ll DPADD+= ${LIBL} @@ -11,3 +14,4 @@ DPADD+= ${LIBL} CLEANFILES+= bc.c scan.c y.tab.h .include <bsd.prog.mk> +.include <bsd.subdir.mk> |