mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 16:05:08 +00:00

- Print current source location, if available - Add a breakpoint at a source location - "sl" command - step to the next line in source
14 lines
296 B
Makefile
14 lines
296 B
Makefile
OBJS = \
|
|
DebugSession.o \
|
|
DebugInfo.o \
|
|
Dwarf/LineProgram.o \
|
|
|
|
|
|
LIBRARY = libdebug.a
|
|
|
|
install:
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibDebug/
|
|
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibDebug/
|
|
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
|
|
|
include ../../Makefile.common
|