CC       = clang

CFLAGS   = -Wall -Wextra -Werror
CFLAGS  += -Wno-deprecated-declarations
CFLAGS  += -I/opt/homebrew/include

LDFLAGS  = -lcrypto
LDFLAGS += -L/opt/homebrew/lib

identity: main.c
	$(CC) $(CFLAGS) $(LDFLAGS) -o identity main.c

.PHONY: clean
clean:
	rm -f identity
