1 Star 0 Fork 0

Ye-zixiao/My-TinyWebServer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 342 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ye-zixiao 提交于 2021-02-13 17:14 . date-2021-02-13
CC := g++
CFLAGS := -Wall -O -g
DLFLAGS := -lpthread -lmysqlclient
SRCS := ./webserver/webserver.cpp ./http/http_task.cpp ./log/log.cpp ./mysql/sql_connpool.cpp \
./myutils/myutils.cpp ./timer/timer_heap.cpp main.cpp
MAIN := server
.PHONY:
all: $(MAIN)
$(MAIN):$(OBJS)
$(CC) -o $(MAIN) $(SRCS) $(DLFLAGS) $(CFLAGS)
clean:
-rm $(MAIN)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yezixiao/My-TinyWebServer.git
git@gitee.com:yezixiao/My-TinyWebServer.git
yezixiao
My-TinyWebServer
My-TinyWebServer
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385