1 Star 0 Fork 0

杭电码农-NEO / HTTP-Web Server Project

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 488 Bytes
一键复制 编辑 原始数据 按行查看 历史
.PHONY:all
all:httpserver calculator date1 date2
httpserver:main.cpp
g++ -o $@ $^ -std=c++11 -lpthread
calculator:test_cgi.cpp
g++ -o $@ $^ -std=c++11
date1:date1.cpp
g++ -o $@ $^ -std=c++11
date2:date2.cpp
g++ -o $@ $^ -std=c++11
.PHONY:clean
clean:
rm -f httpserver
rm -rf issue
rm -f calculator
rm -f date1
rm -f date2
.PHONY:issue
issue:
mkdir -p issue
cp httpserver issue
cp -rf wwwroot issue
mv calculator issue/wwwroot
mv date1 issue/wwwroot
mv date2 issue/wwwroot
C++
1
https://gitee.com/NEO_kou/http-web-server-project.git
git@gitee.com:NEO_kou/http-web-server-project.git
NEO_kou
http-web-server-project
HTTP-Web Server Project
master

搜索帮助