From cad73bb6a0907f45805f536628186a2b3c02320b Mon Sep 17 00:00:00 2001 From: "Theodore A. Roth" <troth@openavr.org> Date: Wed, 12 Feb 2003 17:24:43 +0000 Subject: [PATCH] Remove YACC assignment. Add '-b y' options to YACC invocation. Remove leading '-' from 'include .depend'. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@186 81a1dc3b-b13d-400b-aceb-764788c761c2 --- avrdude/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/avrdude/Makefile b/avrdude/Makefile index cb6617c5..71b3a2f1 100644 --- a/avrdude/Makefile +++ b/avrdude/Makefile @@ -32,7 +32,6 @@ CONFIGDIR = ${PREFIX}/etc DIRS = ${BINDIR} ${MANDIR} ${DOCDIR} ${CONFIGDIR} -YACC = byacc INSTALL = /usr/bin/install -c -o root -g wheel CFLAGS += -Wall -DCONFIG_DIR=\"${CONFIGDIR}\" ${YYDEF} @@ -101,7 +100,7 @@ ${CONFIGDIR}/avrdude.conf : avrdude.conf.sample .SUFFIXES: .c .y .l .y.c: - ${YACC} ${YFLAGS} $< + ${YACC} ${YFLAGS} -b y $< mv -f y.tab.c $@ .l.c: @@ -112,5 +111,5 @@ depend : @${MAKE} config_gram.c lexer.c @${CC} ${CFLAGS} -MM ${SRCS} > .depend --include .depend +include .depend