CC = gcc CFLAGS = -Wall -Wshadow -Wextra -Wpedantic -Werror -Wno-missing-braces -fPIC LIBS = INC = -I ../../../crypto -I ../.. -I . BASE = ../../../ SRC = storage/tests/c/flash.c SRC += storage/tests/c/common.c SRC += storage/tests/c/random_delays.c 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) OUT = libtrezor-storage.so $(OUT): $(OBJ) $(CC) $(CFLAGS) $(LIBS) $(OBJ) -shared -o $(OUT) 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) $(CC) $(CFLAGS) $(INC) -c $< -o $@ clean: rm -f $(OUT) $(OBJ)