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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=WIN95
  3. APPVER=4.0
  4. !include <win32.mak>
  5. all: comdlg32.exe
  6. # Update the resource if necessary
  7. comdlg32.res: comdlg32.rc comdlg32.h resource.h
  8.     $(rc) $(rcflags) $(rcvars) comdlg32.rc
  9. # Update the object file if necessary
  10. comdlg32.obj: comdlg32.c comdlg32.h
  11.     $(cc) $(cflags) $(cvars) $(cdebug) comdlg32.c
  12. # Update the executable file if necessary, and if so, add the resource back in.
  13. comdlg32.exe: comdlg32.obj comdlg32.res
  14.     $(link) $(linkdebug) $(guiflags) -out:comdlg32.exe comdlg32.obj comdlg32.res $(guilibs)