⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 client.mak

📁 Socket 编程的DOS下和Windows开发包 Microsoft TCP/IP SDK for DOS/Windows
💻 MAK
字号:
all: client.exe

client.res: client.rc client.h
    rc -r client.rc

client.obj: client.c client.h
    cl -c -AS -Gsw -Oas -Zpe client.c

# win_sock.lib isn't in the dependency list to avoid having to specify a path.  
# Also assumes the path of wsockets.lib is in the lib environment variable.
client.exe: client.obj client.def 
    link /MAP /NOD client, , , slibcew libw wsockets, client.def
    rc client.res

# if the .res is new and the .exe is not, update the resource.     
# note that the .rc file can be updated without having to either compile
# or link the file
client.exe: client.res
    rc client.res

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -