mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-05 20:50:06 +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
234 B
Makefile
10 lines
234 B
Makefile
OBJ_DEX=bin_dex.o ../format/dex/dex.o
|
|
|
|
STATIC_OBJ+=${OBJ_DEX}
|
|
TARGET_DEX=bin_dex.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_DEX}
|
|
|
|
${TARGET_DEX}: ${OBJ_DEX}
|
|
${CC} $(call libname,bin_dex) -shared ${CFLAGS} -o ${TARGET_DEX} ${OBJ_DEX} $(LDFLAGS)
|