radare2/libr/crypto/p/serpent.mk
Nics 680d3e3329 Implem and integration of the Serpent cipher (ECB) (#8917)
* Implem and integration of the Serpent cipher (ECB)

* Fix for loop variables to be C90 compliant.

* Fix coding style

* Add meson config for Serpent
2017-11-30 22:47:29 +01:00

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)