removed make run rule

This commit is contained in:
Sara 2023-11-01 23:01:45 +01:00
parent 6e75cb6f49
commit 9fe2fbe80a

View file

@ -11,12 +11,7 @@ build:
cc $(source) $(args_debug) -o bin/$(project) $(libraries) $(includes) $(CFLAGS)
b: build
# build and run using debugger
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
# start debugger with target
debug:
gdb -- bin/$(project)
d: debug