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
189 B
Makefile
10 lines
189 B
Makefile
OBJ_ANY=bin_any.o
|
|
|
|
STATIC_OBJ+=${OBJ_ANY}
|
|
TARGET_ANY=bin_any.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_ANY}
|
|
|
|
${TARGET_ANY}: ${OBJ_ANY}
|
|
${CC} $(call libname,bin_any) ${CFLAGS} $(LDFLAGS) ${OBJ_ANY}
|