shrub/outside/scrypt/Makefile
Elliot Glaysher e6f6315691 Revert "Merge pull request #949 from eglaysher/meson-build-clean"
This reverts commit 9f795b535f, reversing
changes made to d5c7b3b932.
2018-03-19 15:13:19 -07:00

17 lines
237 B
Makefile

default: all
CC?=gcc
CFLAGS?=-O2 -ffast-math \
-Wall -g -D_FORTIFY_SOURCE=2 -fPIC
CFLAGS_EXTRA?=-Wl,-rpath=.
all: scrypt.a
OBJS= crypto_scrypt-nosse.o sha256.o
scrypt.a: $(OBJS)
ar rcs scrypt.a $(OBJS)
clean:
rm -f *.o scrypt.a