mirror of https://github.com/stella-emu/stella.git
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
This commit is contained in:
parent
e91ac28927
commit
6eafefb3a5
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue