mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-07 05:41:43 +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
10 lines
203 B
Makefile
10 lines
203 B
Makefile
OBJ_FS=bin_fs.o
|
|
|
|
STATIC_OBJ+=${OBJ_FS}
|
|
TARGET_FS=bin_fs.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_FS}
|
|
|
|
${TARGET_FS}: ${OBJ_FS}
|
|
${CC} $(call libname,bin_fs) -shared ${CFLAGS} -o ${TARGET_FS} ${OBJ_FS} $(LDFLAGS)
|