mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-03 14:37:05 +03:00
17 lines
237 B
Makefile
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
|