aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2024-12-26 21:18:05 -0800
committerPreston Pan <ret2pop@gmail.com>2024-12-26 21:18:05 -0800
commitfd14f6fbf8206589d2a0ad8f0793845cb8faf1d7 (patch)
treeac3f8288b9e5e9d5e3acaf7d07694dc04157233a /Makefile
parente75d6f6b8f4512a5bbfecbfa8c17f0bb687e3d55 (diff)
stuff
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
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)