1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:27:35 +00:00
serenity/Libraries/LibDebug/Makefile
Itamar c5eb20d0cc LibDebug: Parse DWARF information entries
We can now iterate the tree structure of the DIEs, access attribute
values and parse some very basic DWARF expressions.
2020-05-05 11:01:36 +02:00

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