From f90caceeb4f2956e0099e42bbffc892bedfe7115 Mon Sep 17 00:00:00 2001 From: n07070 Date: Tue, 31 Mar 2020 22:47:48 +0200 Subject: [PATCH] Ajouts des flags pour openSSL --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index edf58ae..b8b2f19 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TARGET ?= dazibao SRC_DIRS ?= ./src/* -CC := gcc -Wall +CC := gcc -Wall -lssl -lcrypto SRCS := $(shell find $(SRC_DIRS) -name *.cpp -or -name *.c -or -name *.s) OBJS := $(addsuffix .o,$(basename $(SRCS))) DEPS := $(OBJS:.o=.d)