mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-01 19:23:04 +00:00
3861772e6d
Allows to: r2 zip://foo.apk//classes.dex Honor LDFLAGS in r_bin Fix filename issue in r_io_redirect Add testing on-activate event in r2w2
11 lines
313 B
Makefile
11 lines
313 B
Makefile
OBJ_ELF64=bin_elf64.o bin_meta_elf64.o bin_write_elf64.o
|
|
OBJ_ELF64+=../format/elf/elf64.o ../format/elf/elf64_write.o
|
|
|
|
STATIC_OBJ+=${OBJ_ELF64}
|
|
TARGET_ELF64=bin_elf64.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_ELF64}
|
|
|
|
${TARGET_ELF64}: ${OBJ_ELF64}
|
|
${CC} $(call libname,bin_elf64) -shared ${CFLAGS} $(LDFLAGS) ${OBJ_ELF64}
|