urbit/outside/scrypt/Makefile

17 lines
237 B
Makefile
Raw Normal View History

2015-05-04 02:31:45 +03:00
default: all
CC?=gcc
2015-08-26 01:18:40 +03:00
CFLAGS?=-O2 -ffast-math \
2015-05-04 02:31:45 +03:00
-Wall -g -D_FORTIFY_SOURCE=2 -fPIC
CFLAGS_EXTRA?=-Wl,-rpath=.
all: scrypt.a
2015-08-26 01:18:40 +03:00
OBJS= crypto_scrypt-nosse.o sha256.o
2015-05-04 02:31:45 +03:00
scrypt.a: $(OBJS)
ar rcs scrypt.a $(OBJS)
clean:
rm -f *.o scrypt.a