mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 19:01:31 +00:00
3019bb477c
Also add aes-cbc support by getting IV from user
10 lines
238 B
Makefile
10 lines
238 B
Makefile
OBJ_PUNY=crypto_punycode.o
|
|
|
|
STATIC_OBJ+=${OBJ_PUNY}
|
|
TARGET_PUNY=crypto_punycode.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_PUNY}
|
|
|
|
${TARGET_PUNY}: ${OBJ_PUNY}
|
|
${CC} $(call libname,crypto_punycode) ${LDFLAGS} ${CFLAGS} -o ${TARGET_PUNY} ${OBJ_PUNY}
|