mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 19:01:31 +00:00
13 lines
271 B
Makefile
13 lines
271 B
Makefile
OBJ_ARM_AS=asm_arm_as.o
|
|
|
|
STATIC_OBJ+=${OBJ_ARM_AS}
|
|
TARGET_ARM_AS=asm_arm_as.${EXT_SO}
|
|
|
|
ifeq ($(WITHPIC),1)
|
|
ALL_TARGETS+=${TARGET_ARM_AS}
|
|
|
|
${TARGET_ARM_AS}: ${OBJ_ARM_AS}
|
|
${CC} $(call libname,asm_arm_nasm) ${LDFLAGS} ${CFLAGS} \
|
|
-o ${TARGET_ARM_AS} ${OBJ_ARM_AS}
|
|
endif
|