From bb0f7d4e750045468a33d0dbf5e40fda13740d56 Mon Sep 17 00:00:00 2001 From: zvon Date: Sun, 23 Aug 2020 09:47:47 +0200 Subject: [PATCH] Tetris should have sdlpp.hpp as dependency --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 7116cdb..277b171 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,8 @@ sdlpp.o: sdlpp.cpp sdlpp.hpp $(CXX) $(CFLAGS) -c -o $@ $< ${LDFLAGS} test.o: tests/test.cpp sdlpp.hpp tests/catch.hpp $(CXX) $(CFLAGS) -c -o $@ $< ${LDFLAGS} +tetris.o: tetris.cpp sdlpp.hpp + $(CXX) $(CFLAGS) -c -o $@ $< ${LDFLAGS} clean: rm -Rf *.o test demo