MAKEFILE
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- # Windows-32 TTY Example
- # Copyright 1992 - 1997 Microsoft Corporation
- !include <WIN32.MAK>
- proj = TTY
- all: $(proj).exe
- # Update the resource if necessary
- $(proj).res: $(proj).rc resource.h
- rc -r -fo $(proj).res $(cvars) $(proj).rc
- # Update the object file if necessary
- $(proj).obj: $(proj).c $(proj).h
- $(cc) $(cdebug) $(cflags) $(cvars) $(proj).c
- # Update the EXE
- $(proj).exe: $(proj).obj $(proj).res $(proj).def
- $(link) $(linkdebug) $(guiflags) $(proj).obj $(guilibs) VERSION.LIB $(proj).res -out:$(proj).exe