mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-13 10:24:45 +00:00
14 lines
175 B
Makefile
14 lines
175 B
Makefile
all: hex fmt
|
|
|
|
BIN=hex
|
|
OBJ=hex.o
|
|
BINDEPS=r_cons r_util r_line r_print
|
|
|
|
ftm: fmt.o
|
|
${CC} -I../../include fmt.o ../*.o -o fmt
|
|
|
|
myclean:
|
|
rm -f fmt fmt.o
|
|
|
|
include ../../rules.mk
|