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: wizard.exe
  6. # Update the resource if necessary
  7. wizard.res: wizard.rc wizard.h resource.h
  8.     $(rc) $(rcflags) $(rcvars) wizard.rc
  9. # Update the object file if necessary
  10. wizard.obj: wizard.c wizard.h
  11.     $(cc) $(cflags) $(cvars) $(cdebug) wizard.c
  12. # Update the executable file if necessary, and if so, add the resource back in.
  13. wizard.exe: wizard.obj wizard.res
  14.     $(link) $(linkdebug) $(guiflags) -out:wizard.exe wizard.obj wizard.res $(guilibs) comctl32.lib