mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
c84dd60a7e
Add the 'if' word to the dialogs. Parse the breakpoints table more effieciently.
11 lines
182 B
Makefile
11 lines
182 B
Makefile
.PHONY: all
|
|
all: gdbmi_condition
|
|
|
|
gdbmi_condition: gdbmi_condition.cpp
|
|
g++ -g -o gdbmi_condition gdbmi_condition.cpp
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f gdbmi_condition gdbmi_condition.o
|
|
|