mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-05 20:50:06 +00:00
10 lines
270 B
Makefile
10 lines
270 B
Makefile
OBJ_BLOWFISH=crypto_blowfish.o
|
|
|
|
STATIC_OBJ+=${OBJ_BLOWFISH}
|
|
TARGET_BLOWFISH=crypto_blowfish.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_BLOWFISH}
|
|
|
|
${TARGET_BLOWFISH}: ${OBJ_BLOWFISH}
|
|
${CC} ${call libname,crypto_blowfish} ${LDFLAGS} ${CFLAGS} -o ${TARGET_BLOWFISH} ${OBJ_BLOWFISH}
|