mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:27:35 +00:00

We can now iterate the tree structure of the DIEs, access attribute values and parse some very basic DWARF expressions.
19 lines
409 B
Makefile
19 lines
409 B
Makefile
OBJS = \
|
|
DebugSession.o \
|
|
DebugInfo.o \
|
|
Dwarf/LineProgram.o \
|
|
Dwarf/DwarfInfo.o \
|
|
Dwarf/CompilationUnit.o \
|
|
Dwarf/AbbreviationsMap.o \
|
|
Dwarf/Expression.o \
|
|
Dwarf/DIE.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
|