- [NEW] Break on unknown opcode - [FIX] Solventats mil bugs de pintat del background
12 lines
130 B
Makefile
12 lines
130 B
Makefile
compile:
|
|
g++ -g *.cpp -lSDL2 -o gb
|
|
|
|
run: compile
|
|
./gb
|
|
|
|
debug: compile
|
|
gdb --args gb tetris.gb
|
|
|
|
debug1: compile
|
|
gdb -ex run gb
|