mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-01 11:33:41 +03:00
188 lines
4.7 KiB
Makefile
188 lines
4.7 KiB
Makefile
#
|
|
# Argon2 reference source code package - reference C implementations
|
|
#
|
|
# Copyright 2015
|
|
# Daniel Dinu, Dmitry Khovratovich, Jean-Philippe Aumasson, and Samuel Neves
|
|
#
|
|
# You may use this work under the terms of a Creative Commons CC0 1.0
|
|
# License/Waiver or the Apache Public License 2.0, at your option. The terms of
|
|
# these licenses can be found at:
|
|
#
|
|
# - CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
|
|
# - Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# You should have received a copy of both of these licenses along with this
|
|
# software. If not, they may be obtained at the above URLs.
|
|
#
|
|
|
|
RUN = argon2
|
|
BENCH = bench
|
|
GENKAT = genkat
|
|
|
|
# Increment on an ABI breaking change
|
|
ABI_VERSION = 1
|
|
|
|
DIST = phc-winner-argon2
|
|
|
|
SRC = src/argon2.c src/core.c src/blake2/blake2b.c src/thread.c src/encoding.c
|
|
SRC_RUN = src/run.c
|
|
SRC_BENCH = src/bench.c
|
|
SRC_GENKAT = src/genkat.c
|
|
OBJ = $(SRC:.c=.o)
|
|
|
|
CFLAGS += -std=c89 -O3 -Wall -g -Iinclude -Isrc
|
|
|
|
ifeq ($(NO_THREADS), 1)
|
|
CFLAGS += -DARGON2_NO_THREADS
|
|
else
|
|
CFLAGS += -pthread
|
|
endif
|
|
|
|
CI_CFLAGS := $(CFLAGS) -Werror=declaration-after-statement -D_FORTIFY_SOURCE=2 \
|
|
-Wextra -Wno-type-limits -Werror -coverage -DTEST_LARGE_RAM
|
|
|
|
OPTTARGET ?= native
|
|
OPTTEST := $(shell $(CC) -Iinclude -Isrc -march=$(OPTTARGET) src/opt.c -c \
|
|
-o /dev/null 2>/dev/null; echo $$?)
|
|
# Detect compatible platform
|
|
ifneq ($(OPTTEST), 0)
|
|
$(info Building without optimizations)
|
|
SRC += src/ref.c
|
|
else
|
|
$(info Building with optimizations for $(OPTTARGET))
|
|
CFLAGS += -march=$(OPTTARGET)
|
|
SRC += src/opt.c
|
|
endif
|
|
|
|
BUILD_PATH := $(shell pwd)
|
|
KERNEL_NAME := $(shell uname -s)
|
|
|
|
LIB_NAME=argon2
|
|
ifeq ($(KERNEL_NAME), Linux)
|
|
LIB_EXT := so.$(ABI_VERSION)
|
|
LIB_CFLAGS := -shared -fPIC -fvisibility=hidden -DA2_VISCTL=1
|
|
SO_LDFLAGS := -Wl,-soname,lib$(LIB_NAME).$(LIB_EXT)
|
|
LINKED_LIB_EXT := so
|
|
endif
|
|
ifeq ($(KERNEL_NAME), $(filter $(KERNEL_NAME),FreeBSD NetBSD OpenBSD))
|
|
LIB_EXT := so
|
|
LIB_CFLAGS := -shared -fPIC
|
|
endif
|
|
ifeq ($(KERNEL_NAME), Darwin)
|
|
LIB_EXT := $(ABI_VERSION).dylib
|
|
LIB_CFLAGS := -dynamiclib -install_name @rpath/lib$(LIB_NAME).$(LIB_EXT)
|
|
LINKED_LIB_EXT := dylib
|
|
endif
|
|
ifeq ($(findstring CYGWIN, $(KERNEL_NAME)), CYGWIN)
|
|
LIB_EXT := dll
|
|
LIB_CFLAGS := -shared -Wl,--out-implib,lib$(LIB_NAME).$(LIB_EXT).a
|
|
endif
|
|
ifeq ($(findstring MINGW, $(KERNEL_NAME)), MINGW)
|
|
LIB_EXT := dll
|
|
LIB_CFLAGS := -shared -Wl,--out-implib,lib$(LIB_NAME).$(LIB_EXT).a
|
|
endif
|
|
ifeq ($(findstring MSYS, $(KERNEL_NAME)), MSYS)
|
|
LIB_EXT := dll
|
|
LIB_CFLAGS := -shared -Wl,--out-implib,lib$(LIB_NAME).$(LIB_EXT).a
|
|
endif
|
|
ifeq ($(KERNEL_NAME), SunOS)
|
|
CC := gcc
|
|
CFLAGS += -D_REENTRANT
|
|
LIB_EXT := so
|
|
LIB_CFLAGS := -shared -fPIC
|
|
endif
|
|
|
|
ifeq ($(KERNEL_NAME), Linux)
|
|
ifeq ($(CC), clang)
|
|
CI_CFLAGS += -fsanitize=address -fsanitize=undefined
|
|
endif
|
|
endif
|
|
|
|
LIB_SH := lib$(LIB_NAME).$(LIB_EXT)
|
|
LIB_ST := lib$(LIB_NAME).a
|
|
|
|
ifdef LINKED_LIB_EXT
|
|
LINKED_LIB_SH := lib$(LIB_NAME).$(LINKED_LIB_EXT)
|
|
endif
|
|
|
|
|
|
LIBRARIES = $(LIB_SH) $(LIB_ST)
|
|
HEADERS = include/argon2.h
|
|
|
|
INSTALL = install
|
|
|
|
DESTDIR =
|
|
PREFIX = /usr
|
|
INCLUDE_REL = include
|
|
LIBRARY_REL = lib
|
|
BINARY_REL = bin
|
|
|
|
INST_INCLUDE = $(DESTDIR)$(PREFIX)/$(INCLUDE_REL)
|
|
INST_LIBRARY = $(DESTDIR)$(PREFIX)/$(LIBRARY_REL)
|
|
INST_BINARY = $(DESTDIR)$(PREFIX)/$(BINARY_REL)
|
|
|
|
.PHONY: clean dist format $(GENKAT) all install
|
|
|
|
all: $(RUN) libs
|
|
libs: $(LIBRARIES)
|
|
|
|
$(RUN): $(SRC) $(SRC_RUN)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@
|
|
|
|
$(BENCH): $(SRC) $(SRC_BENCH)
|
|
$(CC) $(CFLAGS) $^ -o $@
|
|
|
|
$(GENKAT): $(SRC) $(SRC_GENKAT)
|
|
$(CC) $(CFLAGS) $^ -o $@ -DGENKAT
|
|
|
|
$(LIB_SH): $(SRC)
|
|
$(CC) $(CFLAGS) $(LIB_CFLAGS) $(LDFLAGS) $(SO_LDFLAGS) $^ -o $@
|
|
|
|
$(LIB_ST): $(OBJ)
|
|
ar rcs $@ $^
|
|
|
|
clean:
|
|
rm -f $(RUN) $(BENCH) $(GENKAT)
|
|
rm -f $(LIB_SH) $(LIB_ST) kat-argon2*
|
|
rm -f testcase
|
|
rm -rf *.dSYM
|
|
cd src/ && rm -f *.o
|
|
cd src/blake2/ && rm -f *.o
|
|
cd kats/ && rm -f kat-* diff* run_* make_*
|
|
|
|
dist:
|
|
cd ..; \
|
|
tar -c --exclude='.??*' -z -f $(DIST)-`date "+%Y%m%d"`.tgz $(DIST)/*
|
|
|
|
test: $(SRC) src/test.c
|
|
$(CC) $(CFLAGS) -Wextra -Wno-type-limits $^ -o testcase
|
|
@sh kats/test.sh
|
|
./testcase
|
|
|
|
testci: $(SRC) src/test.c
|
|
$(CC) $(CI_CFLAGS) $^ -o testcase
|
|
@sh kats/test.sh
|
|
./testcase
|
|
|
|
.PHONY: test
|
|
|
|
format:
|
|
clang-format -style="{BasedOnStyle: llvm, IndentWidth: 4}" \
|
|
-i include/*.h src/*.c src/*.h src/blake2/*.c src/blake2/*.h
|
|
|
|
install: $(RUN) libs
|
|
$(INSTALL) -d $(INST_INCLUDE)
|
|
$(INSTALL) -m 0644 $(HEADERS) $(INST_INCLUDE)
|
|
$(INSTALL) -d $(INST_LIBRARY)
|
|
$(INSTALL) $(LIBRARIES) $(INST_LIBRARY)
|
|
ifdef LINKED_LIB_SH
|
|
cd $(INST_LIBRARY) && ln -s $(notdir $(LIB_SH) $(LINKED_LIB_SH))
|
|
endif
|
|
$(INSTALL) -d $(INST_BINARY)
|
|
$(INSTALL) $(RUN) $(INST_BINARY)
|
|
|
|
uninstall:
|
|
cd $(INST_INCLUDE) && rm -f $(notdir $(HEADERS))
|
|
cd $(INST_LIBRARY) && rm -f $(notdir $(LIBRARIES) $(LINKED_LIB_SH))
|
|
cd $(INST_BINARY) && rm -f $(notdir $(RUN))
|