mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-19 13:53:07 +00:00
13 lines
348 B
Makefile
13 lines
348 B
Makefile
OBJ_EBC=anal_ebc.o
|
|
|
|
STATIC_OBJ+=${OBJ_EBC}
|
|
OBJ_EBC+=../../../../../../../../../../../../../../../../../../../../${LTOP}/asm/arch/ebc/ebc_disas.o
|
|
TARGET_EBC=anal_ebc.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_EBC}
|
|
|
|
${TARGET_EBC}: ${OBJ_EBC} ${SHARED_OBJ}
|
|
$(call pwd)
|
|
${CC} $(call libname,anal_ebc) ${CFLAGS} \
|
|
-I../../include/ -o ${TARGET_EBC} ${OBJ_EBC}
|