mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 03:11:28 +00:00
84002a421f
Enhacements in the new webui Fix r_socket_block_time() Implement assembler for the 1bit arch RAR (wip) Fix pdf, pdb and pD (print_disasm) Implement http.timeout and http.sandbox
14 lines
304 B
Makefile
14 lines
304 B
Makefile
OBJ_RAR=asm_rar.o
|
|
# XXX
|
|
SHARED_RAR=
|
|
#../../shlr/rar/all.o
|
|
SHARED_OBJ+=${SHARED_RAR}
|
|
|
|
STATIC_OBJ+=${OBJ_RAR}
|
|
TARGET_RAR=asm_rar.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_RAR}
|
|
|
|
${TARGET_RAR}: ${OBJ_RAR} ${SHARED_RAR}
|
|
${CC} $(call libname,asm_rar) ${LDFLAGS} ${CFLAGS} -o asm_rar.${EXT_SO} ${OBJ_RAR} ${SHARED_RAR}
|