From 896b5d131f6fd43e3f85328a617e4c781a2b0a06 Mon Sep 17 00:00:00 2001 From: zv0n Date: Sat, 12 Sep 2020 16:35:42 -0700 Subject: [PATCH] Makefile: add windows tetris target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 8765d45..64c198b 100644 --- a/Makefile +++ b/Makefile @@ -18,5 +18,8 @@ sdlpp.o: sdlpp.cpp sdlpp.hpp test.o: tests/test.cpp sdlpp.hpp tests/catch.hpp $(CXX) $(CFLAGS) -c -o $@ $< +windows_tetris: sdlpp.hpp sdlpp.cpp tetris/tetris.cpp tetris/config.cpp tetris/global_vars.cpp tetris/scenes.cpp tetris/functions.cpp tetris/config.hpp tetris/global_vars.hpp tetris/scenes.hpp tetris/functions.hpp + cl -MD -EHsc -Fe"Tetris" sdlpp.cpp tetris/tetris.cpp tetris/config.cpp tetris/global_vars.cpp tetris/scenes.cpp tetris/functions.cpp SDL2/SDL2_framerate.c SDL2/SDL2_gfxPrimitives.c SDL2/SDL2_imageFilter.c SDL2/SDL2_rotozoom.c /link SDL2.lib SDL2_ttf.lib SDL2_image.lib + clean: rm -Rf *.o test demo