📄 makefile.static
字号:
INC=-I/usr/include/mysql -I/usr/local/include/mysqlLIB=-L/usr/lib/mysql -L/usr/local/lib/mysqlCC=gccCCFLAG=-c $(INC)LDFLAG=-D_REENTRANT $(LIB) -static -pthread -lpthread -lmysqlclient -lcryptsocketchat : socketchat.o actface.o base.o cache.o http.o msg.o roomuser.o socketfunc.o system.o thread.o mysqlfunc.o $(CC) $(LDFLAG) socketchat.o actface.o base.o cache.o http.o msg.o roomuser.o socketfunc.o system.o thread.o mysqlfunc.o -o socketchat `find /usr -name libmysqlclient.a` `find /usr -name libcrypt.a`socketchat.o : socketchat.c socketchat.h $(CC) $(CCFLAG) socketchat.cactface.o : actface.c actface.h $(CC) $(CCFLAG) actface.cbase.o : base.c base.h $(CC) $(CCFLAG) base.ccache.o : cache.c cache.h $(CC) $(CCFLAG) cache.chttp.o : http.c http.h $(CC) $(CCFLAG) http.cmsg.o : msg.c msg.h $(CC) $(CCFLAG) msg.croomuser.o : roomuser.c roomuser.h $(CC) $(CCFLAG) roomuser.csocketfunc.o : socketfunc.c socketfunc.h $(CC) $(CCFLAG) socketfunc.csystem.o : system.c system.h $(CC) $(CCFLAG) system.cthread.o : thread.c thread.h $(CC) $(CCFLAG) thread.cmysqlfunc.o : mysqlfunc.c mysqlfunc.h $(CC) $(CCFLAG) mysqlfunc.cclean : rm socketchat *.oinstall : cp socketchat ../web chmod +s ../web/socketchat
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -