MAKEFILE
上传用户:swkcbjrc
上传日期:2016-04-02
资源大小:45277k
文件大小: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=eventselect.obj
  6. all: eventselect.exe
  7. # Update the resource if necessary
  8. # Update the object file if necessary
  9. .cpp.obj: 
  10.     $(cc) $(cdebug) $(cflags) $(cvarsmt) $*.cpp
  11. # Update the executable file if necessary, and if so, add the resource back in.
  12. eventselect.exe: $(objs) $(common_objs) 
  13.     $(link) $(linkdebug) $(conlflags) -out:eventselect.exe $(objs) $(conlibsmt) ws2_32.lib
  14. clean:
  15. del *.obj
  16. del *.exe