2022-04-27 10:04:35 +00:00
|
|
|
CC = cc
|
2022-04-28 13:52:09 +00:00
|
|
|
CFLAGS = -Wall -Wshadow -Wextra -Wpedantic -Werror -Wno-missing-braces -fPIC -fsanitize=address,undefined -DTREZOR_MODEL_T
|
2019-04-25 14:38:56 +00:00
|
|
|
LIBS =
|
2019-06-08 11:51:28 +00:00
|
|
|
INC = -I ../../../crypto -I ../.. -I .
|
|
|
|
BASE = ../../../
|
|
|
|
|
|
|
|
SRC = storage/tests/c/flash.c
|
|
|
|
SRC += storage/tests/c/common.c
|
2021-02-12 11:12:20 +00:00
|
|
|
SRC += storage/tests/c/random_delays.c
|
2019-06-08 11:51:28 +00:00
|
|
|
SRC += storage/storage.c
|
|
|
|
SRC += storage/norcow.c
|
|
|
|
SRC += crypto/pbkdf2.c
|
|
|
|
SRC += crypto/rand.c
|
|
|
|
SRC += crypto/chacha20poly1305/rfc7539.c
|
|
|
|
SRC += crypto/chacha20poly1305/chacha20poly1305.c
|
|
|
|
SRC += crypto/chacha20poly1305/poly1305-donna.c
|
|
|
|
SRC += crypto/chacha20poly1305/chacha_merged.c
|
|
|
|
SRC += crypto/hmac.c
|
|
|
|
SRC += crypto/sha2.c
|
|
|
|
SRC += crypto/memzero.c
|
|
|
|
|
|
|
|
OBJ = $(SRC:%.c=build/%.o)
|
|
|
|
|
2019-04-25 14:38:56 +00:00
|
|
|
OUT = libtrezor-storage.so
|
|
|
|
|
|
|
|
$(OUT): $(OBJ)
|
|
|
|
$(CC) $(CFLAGS) $(LIBS) $(OBJ) -shared -o $(OUT)
|
|
|
|
|
2019-06-08 11:51:28 +00:00
|
|
|
build/crypto/chacha20poly1305/chacha_merged.o: $(BASE)crypto/chacha20poly1305/chacha_merged.c
|
|
|
|
mkdir -p $(@D)
|
|
|
|
$(CC) $(CFLAGS) $(INC) -c $< -o $@
|
|
|
|
|
|
|
|
build/%.o: $(BASE)%.c $(BASE)%.h
|
|
|
|
mkdir -p $(@D)
|
2019-04-25 14:38:56 +00:00
|
|
|
$(CC) $(CFLAGS) $(INC) -c $< -o $@
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(OUT) $(OBJ)
|