mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 19:07:35 +00:00

functrace traces the function calls a program makes. It's like strace, but for userspace. It works by using Debugging functionality to insert breakpoints at call&ret instructions.
11 lines
255 B
Makefile
11 lines
255 B
Makefile
OBJS = \
|
|
DebugSession.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
|