mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 19:01:31 +00:00
15 lines
342 B
Makefile
15 lines
342 B
Makefile
OBJ_NIOS2=asm_nios2.o
|
|
OBJ_NIOS2+=../arch/nios/gnu/nios2-dis.o
|
|
OBJ_NIOS2+=../arch/nios/gnu/nios2-opc.o
|
|
|
|
STATIC_OBJ+=${OBJ_NIOS2}
|
|
TARGET_NIOS2=asm_nios2.${EXT_SO}
|
|
|
|
ifeq ($(WITHPIC),1)
|
|
ALL_TARGETS+=${TARGET_NIOS2}
|
|
|
|
${TARGET_NIOS2}: ${OBJ_NIOS2}
|
|
${CC} $(call libname,asm_nios2) ${LDFLAGS} ${CFLAGS} \
|
|
-o asm_nios2.${EXT_SO} ${OBJ_NIOS2}
|
|
endif
|