mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 18:27:18 +00:00
26 lines
491 B
Plaintext
26 lines
491 B
Plaintext
DBG_OBJS = signal.c map.c trace.c arg.c debug.c plugin.c ;
|
|
DBG_OBJS += pid.c reg.c desc.c ;
|
|
|
|
DBG_OBJS +=
|
|
p/debug_bf.c
|
|
p/debug_esil.c
|
|
p/debug_gdb.c
|
|
p/debug_native.c
|
|
p/debug_rap.c
|
|
;
|
|
|
|
lib r_debug : $(DBG_OBJS) :
|
|
<include>../include
|
|
<include>../../shlr/gdb/include
|
|
<define>CORELIB
|
|
<library>../util
|
|
<library>../anal
|
|
<library>../bp
|
|
<library>../parse
|
|
<library>../cons
|
|
<library>../reg
|
|
<library>../db
|
|
<library>../io
|
|
<library>../../shlr/sdb
|
|
;
|