diff options
author | Preston Pan <ret2pop@gmail.com> | 2024-12-26 21:18:05 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2024-12-26 21:18:05 -0800 |
commit | fd14f6fbf8206589d2a0ad8f0793845cb8faf1d7 (patch) | |
tree | ac3f8288b9e5e9d5e3acaf7d07694dc04157233a /Makefile | |
parent | e75d6f6b8f4512a5bbfecbfa8c17f0bb687e3d55 (diff) |
stuff
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |