mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-07 13:51:16 +00:00
6791ef0f6b
* Fixed r_bininfo build
21 lines
411 B
Makefile
21 lines
411 B
Makefile
NAME=r_bininfo
|
|
DEPS=r_lib r_util
|
|
|
|
foo: pre libr_bininfo.so plugins
|
|
|
|
CFLAGS+=-DCORELIB -Iformat
|
|
#XXX
|
|
CFLAGS+=-D__UNIX__=1 -DLIL_ENDIAN=1
|
|
include ../config.mk
|
|
include ${STATIC_BININFO_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst bininfo_,p/bininfo_,$(STATIC_OBJ)))
|
|
OBJ=bininfo.o ${STATIC_OBJS}
|
|
|
|
pre:
|
|
if [ ! -e libr_bininfo.so ]; then rm -f ${STATIC_OBJS} ; fi
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|