9 lines
91 B
Makefile
9 lines
91 B
Makefile
compile:
|
|
g++ -g *.cpp -lSDL2 -o z80
|
|
|
|
run: compile
|
|
./z80
|
|
|
|
debug: compile
|
|
gdb -ex run z80
|