mirror of
https://github.com/felixalbrigtsen/sfml_tetris
synced 2024-12-04 03:20:05 +01:00
14 lines
241 B
Makefile
14 lines
241 B
Makefile
LINKER_FLAGS = -lsfml-graphics -lsfml-window -lsfml-system
|
|
|
|
main: main.cpp
|
|
g++ -c main.cpp
|
|
|
|
game: tetris.cpp tetris.hpp
|
|
g++ -c tetris.cpp -o game.o
|
|
|
|
out: main game
|
|
g++ main.o game.o -o tetris $(LINKER_FLAGS)
|
|
|
|
clean:
|
|
rm main.o game.o out
|