Files
gameboy/Makefile
Raimon Zamora dc6b3b6a78 - [NEW] gbscreen ara accedeix a la hram i vram directament
- [NEW] Afegida al makefile opció per a profilechar
2025-01-30 12:20:58 +01:00

18 lines
219 B
Makefile

compile:
g++ -g *.cpp -lSDL2 -o gb
run: compile
./gb tetris.gb
debug: compile
gdb --args gb tetris.gb
debug1: compile
gdb -ex run gb
release:
g++ -O3 *.cpp -lSDL2 -o gb
profile:
g++ -g *.cpp -lSDL2 -o gb -pg