From aef9aa879e4875f1578386e017a1cf3909adbc43 Mon Sep 17 00:00:00 2001 From: slack Date: Tue, 10 Jun 2008 23:56:53 +0200 Subject: [PATCH] GBVideo en Makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 846df43..d97beaf 100644 --- 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 $@ $< -- 2.34.1