From fd14f6fbf8206589d2a0ad8f0793845cb8faf1d7 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 26 Dec 2024 21:18:05 -0800 Subject: stuff --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index cafa911..0460512 100644 --- a/Makefile +++ b/Makefile @@ -6,10 +6,11 @@ EXE := $(BIN_DIR)/umami SRC := $(wildcard $(SRC_DIR)/*.c) OBJ := $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o) -CFLAGS := -Wall -Iinclude +CFLAGS := -Wall -Iinclude -lcrypto -lssl LDFLAGS := -Llib LDLIBS := -lm +CFLAGS += $(NIX_CFLAGS_COMPILE) .PHONY: all clean all: $(EXE) -- cgit