mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 04:37:55 +00:00
We can now iterate the tree structure of the DIEs, access attribute values and parse some very basic DWARF expressions.
20 lines
409 B
Makefile
20 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
|