26 lines
990 B
Makefile
26 lines
990 B
Makefile
CXX ?= g++
|
|
CFLAGS ?= -O2 -Wall -Wextra -g
|
|
PREFIX ?= /usr/local/bin
|
|
LDFLAGS ?= -lSDL2 -lSDL2_image -lSDL2_gfx -lSDL2_ttf -pthread
|
|
|
|
.PHONY: default
|
|
default: demo
|
|
|
|
demo: main.o sdlpp.o
|
|
$(CXX) $(CFLAGS) -o $@ $^ ${LDFLAGS}
|
|
test: test.o sdlpp.o
|
|
$(CXX) $(CFLAGS) -o $@ $^ ${LDFLAGS}
|
|
|
|
main.o: main.cpp sdlpp.hpp
|
|
$(CXX) $(CFLAGS) -c -o $@ $<
|
|
sdlpp.o: sdlpp.cpp sdlpp.hpp
|
|
$(CXX) $(CFLAGS) -c -o $@ $<
|
|
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
|