Update makefile

This commit is contained in:
felixalbrigtsen 2020-05-04 23:28:04 +02:00 committed by GitHub
parent a9b42e3dba
commit 0fd275784b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ game: tetris.cpp tetris.hpp
g++ -c tetris.cpp -o game.o
out: main game
g++ main.o game.o -o out $(LINKER_FLAGS)
g++ main.o game.o -o tetris $(LINKER_FLAGS)
clean:
rm main.o game.o out