mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 07:30:33 +00:00
680d3e3329
* Implem and integration of the Serpent cipher (ECB) * Fix for loop variables to be C90 compliant. * Fix coding style * Add meson config for Serpent
14 lines
358 B
Makefile
14 lines
358 B
Makefile
OBJ_SERPENT=crypto_serpent.o crypto_serpent_algo.o
|
|
|
|
DEPS+=r_util
|
|
DEPFLAGS=-L../../util -lr_util -L.. -lr_crypto
|
|
|
|
STATIC_OBJ+=${OBJ_SERPENT}
|
|
TARGET_SERPENT=crypto_serpent.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_SERPENT}
|
|
|
|
${TARGET_SERPENT}: ${OBJ_SERPENT}
|
|
${CC} $(call libname,crypto_serpent) ${LDFLAGS} ${CFLAGS} \
|
|
-o ${TARGET_SERPENT} ${OBJ_SERPENT} $(DEPFLAGS)
|