1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:18:13 +00:00
serenity/Applications/Debugger/Makefile
Itamar 3e9a7175d1 Debugger: Add DebugSession
The DebugSession class wraps the usage of Ptrace.
It is intended to be used by cli & gui debugger programs.

Also, call objdump for disassemly
2020-04-13 00:53:22 +02:00

9 lines
113 B
Makefile
Executable file

OBJS = \
DebugSession.o \
main.o
PROGRAM = Debugger
LIB_DEPS = Core X86
include ../../Makefile.common