From 9813b147580d9f42e2484d27ecaa3ab244841ee8 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Sun, 14 May 2017 19:52:19 +1200 Subject: Add experimental AVX base32 algo, modularise base32 out --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index aa3b243..2998c81 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,12 @@ -CFLAGS += -Wall -Wextra -O2 -finline-functions +CFLAGS += -Wall -Wextra -O2 LDFLAGS += -lssl -lcrypto -lpthread all: sand-leek +sand-leek: sand-leek.o onion_base32.o + clean: - rm -vf sand-leek + rm -vf sand-leek *.o .PHONY: all clean -- cgit v1.1