diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1998-04-30 15:59:49 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1998-04-30 15:59:49 +0000 |
| commit | e656e73032012a2338ece19de575e40454694e7b (patch) | |
| tree | 4169ce953f814ad9b65d2d948e23c1249226db7d | |
| parent | e3b0c2a695927fc7f08d6b4615a852e19ed0a6f4 (diff) | |
Notes
| -rw-r--r-- | gnu/usr.bin/bc/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/usr.bin/bc/Makefile b/gnu/usr.bin/bc/Makefile index 448c1ae5eedd..8ce10559839d 100644 --- a/gnu/usr.bin/bc/Makefile +++ b/gnu/usr.bin/bc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/04/30 07:50:49 ache Exp $ +# $Id: Makefile,v 1.8 1998/04/30 08:14:04 ache Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -19,9 +19,15 @@ 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 \ -DREADLINE=1 \ - -I${.CURDIR}/../../../contrib/bc/h -I${.CURDIR} + -I${.CURDIR}/../../../contrib/bc/h -I${.CURDIR} -I. -CLEANFILES+= ${GENSRCS} y.tab.h +bc.h: bc.c + mv y.tab.h bc.h + +beforedepend: bc.h +scan.o: bc.h + +CLEANFILES+= ${GENSRCS} y.tab.h bc.h DPADD+= ${LIBREADLINE} LDADD+= -lreadline |
