mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-08 14:20:19 +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}
|