radare2/libr/asm/p/propeller.mk
2017-12-06 15:06:06 +08:00

15 lines
381 B
Makefile

OBJ_PROPELLER=asm_propeller.o
OBJ_PROPELLER+=../arch/propeller/propeller_disas.o
CFLAGS+=-I./arch/propeller/
STATIC_OBJ+=${OBJ_PROPELLER}
TARGET_PROPELLER=asm_propeller.${EXT_SO}
ifeq ($(WITHPIC),1)
ALL_TARGETS+=${TARGET_PROPELLER}
${TARGET_PROPELLER}: ${OBJ_PROPELLER}
${CC} $(call libname,asm_propeller) ${LDFLAGS} ${CFLAGS} \
-o ${TARGET_PROPELLER} ${OBJ_PROPELLER}
endif