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)