MAKEFILE
资源名称:1731.rar [点击查看]
上传用户:swkcbjrc
上传日期:2016-04-02
资源大小:45277k
文件大小:1k
源码类别:
游戏
开发平台:
Visual C++
- # Nmake macros for building Windows 32-Bit apps
- TARGETOS=BOTH
- #APPVER=5.0
- !include <win32.mak>
- objs=eventselect.obj
- all: eventselect.exe
- # Update the resource if necessary
- # Update the object file if necessary
- .cpp.obj:
- $(cc) $(cdebug) $(cflags) $(cvarsmt) $*.cpp
- # Update the executable file if necessary, and if so, add the resource back in.
- eventselect.exe: $(objs) $(common_objs)
- $(link) $(linkdebug) $(conlflags) -out:eventselect.exe $(objs) $(conlibsmt) ws2_32.lib
- clean:
- del *.obj
- del *.exe