GBVideo en Makefile
authorslack <slack@Blackbird.(none)>
Tue, 10 Jun 2008 21:56:53 +0000 (23:56 +0200)
committerslack <slack@Blackbird.(none)>
Tue, 10 Jun 2008 21:56:53 +0000 (23:56 +0200)
Makefile

index 846df438fdaf390ef7f36e6046048974f80a5de3..d97beafbedbd800d68a073e7f339ef7cf5ca365b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,13 +2,16 @@ CXXFLAGS=-g -Wall -Weffc++ -Wstrict-null-sentinel -Wold-style-cast \
         -Woverloaded-virtual 
 LDFLAGS=-g
 
-all: gbcore.o MBC.o GBMemory.o Logger.o GBRom.o 
+all: gbcore.o MBC.o GBMemory.o Logger.o GBRom.o GBVideo.o
 
 tests: tests/test_gbrom tests/test_core
 
 Logger.o: Logger.cc Logger.h
        g++ $(CXXFLAGS) -c -o $@ $<
 
+GBVideo.o: GBVideo.cc GBVideo.h Logger.h
+       g++ $(CXXFLAGS) -c -o $@ $<
+
 GBMemory.o: GBMemory.cc GBMemory.h Logger.h
        g++ $(CXXFLAGS) -c -o $@ $<