From 6061a17df369a1f6b9c9af144541ba2ba8d036af Mon Sep 17 00:00:00 2001 From: tv Date: Thu, 31 Jan 2002 21:15:08 +0000 Subject: [PATCH] itbl-parse ends in .y; itbl-lex in .l. --- gnu/usr.bin/binutils/gas/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/usr.bin/binutils/gas/Makefile b/gnu/usr.bin/binutils/gas/Makefile index c7fb8afff8e5..86bc5d0a4a13 100644 --- a/gnu/usr.bin/binutils/gas/Makefile +++ b/gnu/usr.bin/binutils/gas/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2001/08/06 19:12:02 tv Exp $ +# $NetBSD: Makefile,v 1.2 2002/01/31 21:15:08 tv Exp $ TOP= ${.CURDIR}/../../.. DIST= ${TOP}/dist/toolchain @@ -7,7 +7,9 @@ DIST= ${TOP}/dist/toolchain .include "${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk" PROG= as -SRCS= ${G_OBJS:.o=.c} +SRCS= ${G_OBJS:Nitbl-[pl]*:.o=.c} \ + ${G_OBJS:Mitbl-parse.o:.o=.y} \ + ${G_OBJS:Mitbl-lex.o:.o=.l} CPPFLAGS+= -I${.CURDIR}/arch/${MACHINE_ARCH}