MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. # Windows-32 TTY Example
  2. # Copyright 1992 - 1997 Microsoft Corporation
  3. !include <WIN32.MAK>
  4. proj = TTY
  5. all: $(proj).exe
  6. # Update the resource if necessary
  7. $(proj).res: $(proj).rc resource.h
  8.     rc -r -fo $(proj).res $(cvars) $(proj).rc
  9. # Update the object file if necessary
  10. $(proj).obj: $(proj).c $(proj).h
  11.     $(cc) $(cdebug) $(cflags) $(cvars) $(proj).c
  12. # Update the EXE
  13. $(proj).exe: $(proj).obj $(proj).res $(proj).def
  14.     $(link) $(linkdebug) $(guiflags) $(proj).obj  $(guilibs) VERSION.LIB $(proj).res -out:$(proj).exe