Ajouts des flags pour openSSL

This commit is contained in:
n07070 2020-03-31 22:47:48 +02:00
parent 1295a91f42
commit f90caceeb4

View File

@ -1,6 +1,6 @@
TARGET ?= dazibao TARGET ?= dazibao
SRC_DIRS ?= ./src/* SRC_DIRS ?= ./src/*
CC := gcc -Wall CC := gcc -Wall -lssl -lcrypto
SRCS := $(shell find $(SRC_DIRS) -name *.cpp -or -name *.c -or -name *.s) SRCS := $(shell find $(SRC_DIRS) -name *.cpp -or -name *.c -or -name *.s)
OBJS := $(addsuffix .o,$(basename $(SRCS))) OBJS := $(addsuffix .o,$(basename $(SRCS)))
DEPS := $(OBJS:.o=.d) DEPS := $(OBJS:.o=.d)