Add vga.o target for DOS port.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@167 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
bwmott 2003-02-17 05:20:18 +00:00
parent 2b0b275655
commit 7c1c6549f4
1 changed files with 5 additions and 2 deletions

View File

@ -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.29 2002-12-01 02:14:01 stephena Exp $
## $Id: makefile,v 1.30 2003-02-17 05:20:18 bwmott Exp $
##============================================================================
##============================================================================
@ -199,7 +199,7 @@ dos:
OPTIONS+="$(OPTS.DOS)" \
LDFLAGS="" \
LDLIBS="" \
OBJS="mainDOS.o PCJoys.o SndDOS.o dos_sb.o"
OBJS="mainDOS.o PCJoys.o SndDOS.o dos_sb.o vga.o"
unix-x:
make stella.x11 \
@ -451,6 +451,9 @@ SndDOS.o: $(UI)/dos/SndDOS.cxx
dos_sb.o: $(UI)/dos/dos_sb.c
$(CXX) -c $(CXXFLAGS) $(OPTIONS) $(UI)/dos/dos_sb.c
vga.o: $(UI)/dos/vga.cxx
$(CXX) -c $(CXXFLAGS) $(OPTIONS) $(UI)/dos/vga.cxx
SoundALSA.o: $(UI)/sound/SoundALSA.cxx $(UI)/sound/SoundALSA.hxx
$(CXX) -c $(CXXFLAGS) $(OPTIONS) $(LDFLAGS) $(UI)/sound/SoundALSA.cxx