From 6eafefb3a51d3900706026af1ad8b17e5620240d Mon Sep 17 00:00:00 2001 From: stephena Date: Fri, 1 Jul 2005 13:59:40 +0000 Subject: [PATCH] Made Yacc stuff be part of DEVELOPER_SUPPORT, so it's only compiled when we want the debugger. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@587 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/Makefile | 5 ++--- stella/configure | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/stella/Makefile b/stella/Makefile index 04e2aaf2b..235b79943 100644 --- a/stella/Makefile +++ b/stella/Makefile @@ -13,7 +13,7 @@ ## See the file "license" for information on usage and redistribution of ## this file, and for a DISCLAIMER OF ALL WARRANTIES. ## -## $Id: Makefile,v 1.5 2005-07-01 04:22:26 urchlay Exp $ +## $Id: Makefile,v 1.6 2005-07-01 13:59:40 stephena Exp $ ## ## Based on code from ScummVM - Scumm Interpreter ## Copyright (C) 2002-2004 The ScummVM project @@ -90,8 +90,7 @@ MODULES += \ src/emucore \ src/emucore/m6502 \ src/gui \ - src/common \ - src/yacc + src/common ###################################################################### # The build rules follow - normally you should have no need to diff --git a/stella/configure b/stella/configure index 5fa023949..ce08ed3b6 100755 --- a/stella/configure +++ b/stella/configure @@ -688,7 +688,7 @@ fi if test "$_build_developer" = yes ; then DEFINES="$DEFINES -DDEVELOPER_SUPPORT" - MODULES="$MODULES $DBG" + MODULES="$MODULES $DBG $YACC" INCLUDES="$INCLUDES -I$DBG -I$YACC" fi