Makefile
资源名称:Ping.rar [点击查看]
上传用户:atfdc5678
上传日期:2022-08-06
资源大小:61k
文件大小:1k
源码类别:
网络编程
开发平台:
Visual C++
- # Nmake macros for building Windows 32-Bit apps
- TARGETOS=BOTH
- #APPVER=5.0
- !include <win32.mak>
- objs=ping.obj
- all: ping.exe
- # Update the resource if necessary
- # Update the object file if necessary
- .c.obj:
- $(cc) $(cdebug) $(cflags) $(cvarsmt) /Zp1 $*.c
- # Update the executable file if necessary, and if so, add the resource back in.
- ping.exe: $(objs) $(common_objs)
- $(link) $(linkdebug) $(conlflags) -out:ping.exe $(objs) $(conlibsmt) ws2_32.lib
- clean:
- del *.obj
- del *.exe