- [CHG] Tot el codi mogut a la carpeta "source"

This commit is contained in:
2026-06-03 18:07:16 +02:00
parent 88a02d49f7
commit 2fe0ce6152
32 changed files with 4 additions and 5 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
compile:
g++ -g *.cpp -lSDL2 -o gb
g++ -g source/*.cpp -lSDL2 -o gb
run: compile
./gb tetris.gb
@@ -11,7 +11,7 @@ debug1: compile
gdb -ex run gb
release:
g++ -O3 *.cpp -lSDL2 -o gb
g++ -O3 source/*.cpp -lSDL2 -o gb
profile:
g++ -g *.cpp -lSDL2 -o gb -pg
g++ -g source/*.cpp -lSDL2 -o gb -pg