summaryrefslogtreecommitdiffstats
path: root/demos/mac/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'demos/mac/Makefile')
-rw-r--r--demos/mac/Makefile14
1 files changed, 12 insertions, 2 deletions
diff --git a/demos/mac/Makefile b/demos/mac/Makefile
index 00d2d8dbe6..629e77dfc2 100644
--- a/demos/mac/Makefile
+++ b/demos/mac/Makefile
@@ -11,7 +11,9 @@
CFLAGS = $(OPENSSL_INCS_LOCATION) -Wall
LDFLAGS = $(OPENSSL_LIBS_LOCATION) -lssl -lcrypto
-all: gmac hmac-sha512 cmac-aes256 poly1305
+TESTS=gmac hmac-sha512 cmac-aes256 poly1305
+
+all: $(TESTS)
gmac: gmac.o
hmac-sha512: hmac-sha512.o
@@ -22,4 +24,12 @@ gmac hmac-sha512 cmac-aes256 poly1305:
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
clean:
- $(RM) gmac hmac-sha512 cmac-aes256 poly1305 *.o
+ $(RM) *.o $(TESTS)
+
+.PHONY: test
+test: all
+ @echo "\nMAC tests:"
+ @set -e; for tst in $(TESTS); do \
+ echo "\n"$$tst; \
+ LD_LIBRARY_PATH=../.. ./$$tst; \
+ done