mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-08 06:47:33 +00:00
10 lines
241 B
Makefile
10 lines
241 B
Makefile
OBJ_X86_AS=asm_x86_as.o
|
|
|
|
STATIC_OBJ+=${OBJ_X86_AS}
|
|
TARGET_X86_AS=asm_x86_as.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_X86_AS}
|
|
|
|
${TARGET_X86_AS}: ${OBJ_X86_AS}
|
|
${CC} $(call libname,asm_x86_nasm) ${LDFLAGS} ${CFLAGS} -o ${TARGET_X86_AS} ${OBJ_X86_AS}
|