mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 07:00:30 +00:00
10 lines
223 B
Makefile
10 lines
223 B
Makefile
OBJ_ESIL=debug_esil.o
|
|
|
|
STATIC_OBJ+=${OBJ_ESIL}
|
|
TARGET_ESIL=debug_esil.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_ESIL}
|
|
|
|
${TARGET_ESIL}: ${OBJ_ESIL}
|
|
${CC} $(call libname,debug_esil) ${OBJ_ESIL} ${CFLAGS} ${LDFLAGS} -o ${TARGET_ESIL}
|