mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-08 06:47:33 +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
320 B
Makefile
10 lines
320 B
Makefile
OBJ_DYLDCACHE=bin_xtr_dyldcache.o ../format/mach0/dyldcache.o
|
|
|
|
STATIC_OBJ+=${OBJ_DYLDCACHE}
|
|
TARGET_DYLDCACHE=bin_xtr_dyldcache.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_DYLDCACHE}
|
|
|
|
${TARGET_DYLDCACHE}: ${OBJ_DYLDCACHE}
|
|
${CC} $(call libname,bin_xtr_dyldcache) -shared ${CFLAGS} -o ${TARGET_DYLDCACHE} ${OBJ_DYLDCACHE} $(LDFLAGS)
|