mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 19:01:31 +00:00
12 lines
276 B
Makefile
12 lines
276 B
Makefile
OBJ_MALBOLGE=asm_malbolge.o
|
|
|
|
STATIC_OBJ+=${OBJ_MALBOLGE}
|
|
TARGET_MALBOLGE=asm_malbolge.${EXT_SO}
|
|
|
|
ifeq ($(WITHPIC),1)
|
|
ALL_TARGETS+=${TARGET_MALBOLGE}
|
|
|
|
${TARGET_MALBOLGE}: ${OBJ_MALBOLGE}
|
|
${CC} ${call libname,asm_malbolge} ${CFLAGS} -o ${TARGET_MALBOLGE} ${OBJ_MALBOLGE}
|
|
endif
|