mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-09 06:50:49 +00:00
bb8cfd866d
- Add function r_bin_extract() - Add lib r_bin_fatmach0 into format/mach0/ - Complete mach0_specs with fat mach-o stuff - Add plugin bin_fatmach0 - Initial import of mach-ex into r_bin - Remove mach-ex * rabin2 - Add flag -x for extracting bins from file * Build - Update plugins.def.cfg - Remove mach-ex stuff from libr/Makefile
11 lines
287 B
Makefile
11 lines
287 B
Makefile
OBJ_FATMACH0=bin_fatmach0.o ../format/mach0/fatmach0.o
|
|
|
|
STATIC_OBJ+=${OBJ_FATMACH0}
|
|
TARGET_FATMACH0=bin_fatmach0.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_FATMACH0}
|
|
|
|
${TARGET_FATMACH0}: ${OBJ_FATMACH0}
|
|
${CC} -shared ${CFLAGS} -o ${TARGET_FATMACH0} ${OBJ_FATMACH0}
|
|
@#strip -s ${TARGET_FATMACH0}
|