radare2/libr/io/p/rap.mk
pancake 4d50a86855 * Initial implementation of the rap:// IO plugin
- 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
2010-08-22 21:42:08 +02:00

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 \