mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-08 22:30:30 +00:00
15 lines
381 B
Makefile
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
|