diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-27 22:53:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-27 22:53:45 +0000 |
commit | 83acb5e2c36b12eeb78bfff67d27df8062157dac (patch) | |
tree | ecdf543a1091072d0a0cdc2e821480489b821c32 | |
parent | 1f151608312ce444020cf4d74ae1f3e386aa1da0 (diff) |
SRCS should refer to the .l and .c files; spotted by naddy
-rw-r--r-- | usr.bin/bc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/bc/Makefile b/usr.bin/bc/Makefile index ca9e7e08f55..a6d3743c9b4 100644 --- a/usr.bin/bc/Makefile +++ b/usr.bin/bc/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.2 2003/11/03 19:51:42 otto Exp $ +# $OpenBSD: Makefile,v 1.3 2006/05/27 22:53:44 deraadt Exp $ PROG= bc -SRCS= bc.c scan.c +SRCS= bc.y scan.l CPPFLAGS+= -I. -I${.CURDIR} CFLAGS+= -Wall -Wno-unused YFLAGS+= |