mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 19:01:31 +00:00
4d50a86855
- RMT packet descriptions are in r_io - io.rap plugin is now compiled by default. $ rm -f plugins.cfg $ ./configure-plugins * Some syntax fixes in r_vm * RCore.r_core_server() method uses r_io_is_listener() to wait for connections * Some minor fixes in r_socket - Add r_socket_read_block() fixes SIGPIPE and network issues
13 lines
410 B
Makefile
13 lines
410 B
Makefile
OBJ_RAP=io_rap.o
|
|
|
|
STATIC_OBJ+=${OBJ_RAP}
|
|
TARGET_RAP=io_rap.${EXT_SO}
|
|
ALL_TARGETS+=${TARGET_RAP}
|
|
|
|
${TARGET_RAP}: ${OBJ_RAP}
|
|
${CC} -shared ${CFLAGS} -o ${TARGET_RAP} ${OBJ_RAP} \
|
|
${LDFLAGS_LINKPATH}../../socket -L../../socket -lr_socket \
|
|
${LDFLAGS_LINKPATH}../../util -L../../util -lr_util \
|
|
${LDFLAGS_LINKPATH}../../cons -L../../cons -lr_cons \
|
|
${LDFLAGS_LINKPATH}.. -L.. -L../../lib -lr_lib -lr_io \
|