1 Star 0 Fork 4

xiejian/StServerFrame

forked from storm_zy/StServerFrame 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MakefileSrv 964 Bytes
一键复制 编辑 原始数据 按行查看 历史
storm_dd2 提交于 2019-09-24 14:07 . 项目创建
CXX=g++
BIN_PATH=/usr/local/bin
INCLUDE_PATH=/usr/local/include
#LIB_PATH=/usr/lib64
LOCAL_LIB_PATH=/usr/local/lib
CFLAGS=-W -I$(INCLUDE_PATH) -I$(BIN_PATH) \
-Icommon -c -g -std=c++0x
#LFLAGS=-L$(LOCAL_LIB_PATH) \
# -ldl -lm -g -lpthread -lcurl -Wl, -E
LFLAGS=-g
COMMON_O=Common/Platform.o
UTIL_O=Util/NetUtil.o Util/Log.o Util/Misc.o Util/Config.o Util/cfg_reader.o
EVENT_O=Event/EpollModule.o Event/EventModule.o Event/EventLoop.o Event/Channel.o
USERDEF_O=UserDef/EchoServer.o UserDef/EchoSession.o
OTHERS_O=$(COMMON_O) $(UTIL_O) $(EVENT_O) $(USERDEF_O)
BaseServer_O=Core/StMain.o Core/Buffer.o Core/Socket.o Core/TcpClient.o Core/Listener.o Core/TcpConnection.o \
Core/TcpServer.o Core/TcpSession.o
ALL_O=$(OTHERS_O) $(BaseServer_O)
BIN_HOME=./bin
APP=$(BIN_HOME)/EchoServer.out
%.o:%.cpp
$(CXX) $(CFLAGS) $< -o $@
all:$(ALL_O)
$(CXX) $(LFLAGS) $(OTHERS_O) $(BaseServer_O) -o $(BIN_HOME)/EchoServer.out
clean:
-rm -f $(ALL_O) $(APP)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xiejian601/StServerFrame.git
git@gitee.com:xiejian601/StServerFrame.git
xiejian601
StServerFrame
StServerFrame
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385