mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 19:01:31 +00:00
12 lines
267 B
Makefile
12 lines
267 B
Makefile
OBJ_X86_AS=asm_x86_as.o
|
|
|
|
STATIC_OBJ+=${OBJ_X86_AS}
|
|
TARGET_X86_AS=asm_x86_as.${EXT_SO}
|
|
|
|
ifeq ($(WITHPIC),1)
|
|
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}
|
|
endif
|