]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - prng.mk
arcfour got its own testsuit now + some modifications of the build process
[avr-crypto-lib.git] / prng.mk
diff --git a/prng.mk b/prng.mk
new file mode 100644 (file)
index 0000000..c31f69d
--- /dev/null
+++ b/prng.mk
@@ -0,0 +1,13 @@
+# Makefile for PRNG
+ALGO_NAME := PRNG
+
+# comment out the following line for removement of PRNG from the build process
+PRNGS += $(ALGO_NAME)
+
+$(ALGO_NAME)_OBJ      := prng.o
+$(ALGO_NAME)_TEST_BIN := main.o debug.o uart.o serial-tools.o sha256-asm.o \
+                         xtea-asm.o arcfour-asm.o prng.o cast5.o
+                         
+$(ALGO_NAME)_NESSIE_TEST      := "nessie"
+$(ALGO_NAME)_PEROFRMANCE_TEST := "performance"
+