Started a tiny idle clicker demo called 'Clicker the Dog'. No idea what that means.
This commit is contained in:
parent
cf3da32681
commit
04f6fef921
5 changed files with 131 additions and 6 deletions
12
Makefile
12
Makefile
|
@ -30,20 +30,20 @@ test: build
|
|||
|
||||
run: build test
|
||||
ifeq '$(OS)' 'Windows_NT'
|
||||
powershell "cp ./builddir/calc.exe ."
|
||||
./calc
|
||||
powershell "cp ./builddir/clicker_game.exe ."
|
||||
./clicker_game
|
||||
else
|
||||
./builddir/calc
|
||||
./builddir/clicker_game
|
||||
endif
|
||||
|
||||
debug: build
|
||||
gdb --nx -x .gdbinit --ex run --args builddir/calc
|
||||
gdb --nx -x .gdbinit --ex run --args builddir/clicker_game
|
||||
|
||||
debug_run: build
|
||||
gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/calc
|
||||
gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/clicker_game
|
||||
|
||||
debug_walk: build test
|
||||
gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/calc t
|
||||
gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/clicker_game t
|
||||
|
||||
clean:
|
||||
meson compile --clean -C builddir
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue