radare2/libr/bin/p/dex.mk
pancake 3861772e6d Initial implementation of r_io.zip plugin
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
2012-09-07 03:26:38 +02:00

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)