makefile
来自「this gives details of the network progra」· 代码 · 共 15 行
TXT
15 行
# Makefile for threaded tcp chat server# This rule describes how to build a .o file from a .c file# -Wall tells gcc to print all warnings!.c.o: gcc -c -Wall $<# we need the Posix threads libraryLIBS=-lpthread -lsocket -lnslserver: server.o gcc -g -o server server.o ${LIBS}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?