Remove ASM Salsa20 since it will not be the default in 2.x any more... reduce build complexity.

This commit is contained in:
Adam Ierymenko 2019-08-16 14:26:25 -07:00
commit 51a25fdec9
No known key found for this signature in database
GPG key ID: 1657198823E52A61
5 changed files with 284 additions and 230 deletions

View file

@ -1,11 +1,15 @@
# Common makefile -- loads make rules for each platform
BUILDDIR := build
CMAKE_OPTS := -DCMAKE_BUILD_TYPE=Release
.PHONY: all
all:
mkdir -p ${BUILDDIR} && cd ${BUILDDIR} && cmake .. && $(MAKE)
mkdir -p ${BUILDDIR} && cd ${BUILDDIR} && cmake .. ${CMAKE_OPTS} && $(MAKE)
clean:
rm -rf ${BUILDDIR}
distclean:
rm -rf ${BUILDDIR}