aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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)