diff options
author | David Phillips <david@sighup.nz> | 2017-05-14 19:52:19 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-05-14 19:52:19 +1200 |
commit | 9813b147580d9f42e2484d27ecaa3ab244841ee8 (patch) | |
tree | 56a94fcd0f12aa878e0af29fc9600270dd85f759 /Makefile | |
parent | 70652fa53c364d1bf4e7a5eeac7e9e1a5a69a89e (diff) | |
download | sand-leek-9813b147580d9f42e2484d27ecaa3ab244841ee8.tar.xz |
Add experimental AVX base32 algo, modularise base32 out
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |