mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 06:55:01 +00:00
11 lines
223 B
Makefile
11 lines
223 B
Makefile
OBJ_PPC=anal_ppc_gnu.o
|
|
|
|
STATIC_OBJ+=${OBJ_PPC}
|
|
TARGET_PPC=anal_ppc_gnu.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_PPC}
|
|
|
|
${TARGET_PPC}: ${OBJ_PPC}
|
|
${CC} $(call libname,anal_ppc_gnu) ${CFLAGS} \
|
|
-o anal_ppc_gnu.${EXT_SO} ${OBJ_PPC}
|