- [CHG] Tot el codi mogut a la carpeta "source"
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
compile:
|
compile:
|
||||||
g++ -g *.cpp -lSDL2 -o gb
|
g++ -g source/*.cpp -lSDL2 -o gb
|
||||||
|
|
||||||
run: compile
|
run: compile
|
||||||
./gb tetris.gb
|
./gb tetris.gb
|
||||||
@@ -11,7 +11,7 @@ debug1: compile
|
|||||||
gdb -ex run gb
|
gdb -ex run gb
|
||||||
|
|
||||||
release:
|
release:
|
||||||
g++ -O3 *.cpp -lSDL2 -o gb
|
g++ -O3 source/*.cpp -lSDL2 -o gb
|
||||||
|
|
||||||
profile:
|
profile:
|
||||||
g++ -g *.cpp -lSDL2 -o gb -pg
|
g++ -g source/*.cpp -lSDL2 -o gb -pg
|
||||||
|
|||||||
+1
-1
@@ -2,5 +2,5 @@
|
|||||||
cppflags = -g
|
cppflags = -g
|
||||||
libs = -lSDL2
|
libs = -lSDL2
|
||||||
executable = gb
|
executable = gb
|
||||||
sourcepath = .
|
sourcepath = source
|
||||||
buildpath = build
|
buildpath = build
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#include "sm83dis.h"
|
#include "sm83dis.h"
|
||||||
#include "sm83.h"
|
|
||||||
#include "mem.h"
|
#include "mem.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
Reference in New Issue
Block a user