mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-09 15:00:42 +00:00
9efa5a50cb
* Simplify some functions in r_bin * Added support for x86-64 for the 'ap' command * Added dummy function calls for r_bin_demangle()
24 lines
472 B
Makefile
24 lines
472 B
Makefile
NAME=r_bin
|
|
DEPS=r_lib r_util
|
|
|
|
include ../config.mk
|
|
|
|
foo: pre libr_bin.${EXT_SO} libr_bin.${EXT_AR} plugins
|
|
|
|
# XXX
|
|
CFLAGS+=-DCORELIB -Iformat
|
|
|
|
include ../config.mk
|
|
include ${STATIC_BIN_PLUGINS}
|
|
include ${STATIC_BIN_XTR_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst bin_,p/bin_,$(STATIC_OBJ)))
|
|
OBJ=bin.o bin_meta.o bin_write.o demangle.o ${STATIC_OBJS}
|
|
|
|
pre:
|
|
if [ ! -e libr_bin.${EXT_SO} ]; then rm -f ${STATIC_OBJS} ; fi
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|