1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 16:05:08 +00:00
serenity/Libraries/LibDebug/Makefile
Itamar e35219b5ce Debugger: Add source-level operations
- Print current source location, if available
- Add a breakpoint at a source location
- "sl" command - step to the next line in source
2020-04-20 17:25:50 +02:00

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