mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-26 07:17:01 +00:00
10 lines
229 B
Makefile
10 lines
229 B
Makefile
OBJ_X86_NASM=asm_x86_nasm.o
|
|
|
|
STATIC_OBJ+=${OBJ_X86_NASM}
|
|
TARGET_X86_NASM=asm_x86_nasm.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_X86_NASM}
|
|
|
|
${TARGET_X86_NASM}: ${OBJ_X86_NASM}
|
|
${CC} -shared ${CFLAGS} -o ${TARGET_X86_NASM} ${OBJ_X86_NASM}
|