mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 12:12:06 +00:00
10 lines
250 B
Makefile
10 lines
250 B
Makefile
OBJ_MALBOLGE=asm_malbolge.o
|
|
|
|
STATIC_OBJ+=${OBJ_MALBOLGE}
|
|
TARGET_MALBOLGE=asm_malbolge.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_MALBOLGE}
|
|
|
|
${TARGET_MALBOLGE}: ${OBJ_MALBOLGE}
|
|
${CC} ${call libname,asm_malbolge} ${CFLAGS} -o ${TARGET_MALBOLGE} ${OBJ_MALBOLGE}
|