From: slack Date: Tue, 10 Jun 2008 21:56:53 +0000 (+0200) Subject: GBVideo en Makefile X-Git-Tag: v0.1~59 X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=aef9aa879e4875f1578386e017a1cf3909adbc43;p=wenboi.git GBVideo en Makefile --- 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 $@ $<