mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-24 06:48:46 +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
25 lines
455 B
Makefile
25 lines
455 B
Makefile
include ../../config.mk
|
|
|
|
#include ../../../config-user.mk
|
|
CFLAGS=-I../../include -I../format/ -Wall -fPIC
|
|
CFLAGS+=${LDFLAGS_LIB}
|
|
#CFLAGS=$CCLIB_SHARED
|
|
CFLAGS+=-L../../util -lr_util
|
|
|
|
foo: all
|
|
|
|
ALL_TARGETS=
|
|
FORMATS=elf.mk elf64.mk pe.mk pe64.mk mach0.mk mach064.mk fatmach0.mk java.mk dummy.mk
|
|
include $(FORMATS)
|
|
|
|
all: ${ALL_TARGETS}
|
|
@true
|
|
|
|
clean:
|
|
-rm -f *.so *.o ${STATIC_OBJ}
|
|
|
|
mrproper: clean
|
|
-rm -f *.d ../format/*/*.d
|
|
|
|
.PHONY: all clean foo mrproper
|