mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-30 08:30:53 +00:00
a6a92aa73e
* Fix linking of r_anal_x86_simple plugin * Fix some uninitialized vars reported by debian build system
16 lines
259 B
Makefile
16 lines
259 B
Makefile
include ../../config.mk
|
|
|
|
all: hex fmt
|
|
|
|
BIN=hex
|
|
OBJ=hex.o
|
|
BINDEPS=r_cons r_line r_print r_util r_anal r_asm
|
|
|
|
fmt${EXT_EXE}: fmt.o
|
|
${CC} -I../../include fmt.o -L../../util -lr_util ${LDFLAGS} -o fmt${EXT_EXE}
|
|
|
|
myclean:
|
|
rm -f fmt fmt.o
|
|
|
|
include ../../rules.mk
|