From 7c1c6549f474fd84dab579af811f7b4b8ee66f2d Mon Sep 17 00:00:00 2001 From: bwmott Date: Mon, 17 Feb 2003 05:20:18 +0000 Subject: [PATCH] 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 --- stella/src/build/makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/stella/src/build/makefile b/stella/src/build/makefile index 11e8268dc..b5e378e39 100644 --- a/stella/src/build/makefile +++ b/stella/src/build/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.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