mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-11 08:16:07 +00:00
10 lines
325 B
Makefile
10 lines
325 B
Makefile
OBJ_PPCPSEUDO+=parse_ppc_pseudo.o
|
|
|
|
TARGET_PPCPSEUDO=parse_ppc_pseudo.${EXT_SO}
|
|
ALL_TARGETS+=${TARGET_PPCPSEUDO}
|
|
STATIC_OBJ+=${OBJ_PPCPSEUDO}
|
|
|
|
${TARGET_PPCPSEUDO}: ${OBJ_PPCPSEUDO}
|
|
${CC} $(call libname,parse_ppc_pseudo) -L../../util -lr_util \
|
|
${LDFLAGS_SHARED} ${CFLAGS} ${LDFLAGS} -o ${TARGET_PPCPSEUDO} ${OBJ_PPCPSEUDO}
|