Makefile
上传用户:atfdc5678
上传日期:2022-08-06
资源大小:61k
文件大小:1k
源码类别:

网络编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=BOTH
  3. #APPVER=5.0
  4. !include <win32.mak>
  5. objs=ping.obj
  6. all: ping.exe
  7. # Update the resource if necessary
  8. # Update the object file if necessary
  9. .c.obj: 
  10.     $(cc) $(cdebug) $(cflags) $(cvarsmt) /Zp1 $*.c
  11. # Update the executable file if necessary, and if so, add the resource back in.
  12. ping.exe: $(objs) $(common_objs) 
  13.     $(link) $(linkdebug) $(conlflags) -out:ping.exe $(objs) $(conlibsmt) ws2_32.lib
  14. clean:
  15. del *.obj
  16. del *.exe