removed make run rule
This commit is contained in:
parent
6e75cb6f49
commit
9fe2fbe80a
7
Makefile
7
Makefile
|
@ -11,12 +11,7 @@ build:
|
||||||
cc $(source) $(args_debug) -o bin/$(project) $(libraries) $(includes) $(CFLAGS)
|
cc $(source) $(args_debug) -o bin/$(project) $(libraries) $(includes) $(CFLAGS)
|
||||||
b: build
|
b: build
|
||||||
|
|
||||||
# build and run using debugger
|
# start debugger with target
|
||||||
run: build
|
|
||||||
gdb -x run.gdb -- bin/$(project)
|
|
||||||
r: run
|
|
||||||
|
|
||||||
# same as run, but giving you a chance to configure the debugger/set breakpoints before running
|
|
||||||
debug:
|
debug:
|
||||||
gdb -- bin/$(project)
|
gdb -- bin/$(project)
|
||||||
d: debug
|
d: debug
|
||||||
|
|
Loading…
Reference in a new issue