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. !ifndef nodebug
  6. cflags = $(cflags) -DDBG
  7. !endif
  8. all: SetDisp.exe
  9. # Update the resource if necessary
  10. SetDisp.res: SetDisp.rc SetDisp.h resource.h
  11.     $(rc) $(rcflags) $(rcvars) SetDisp.rc
  12. # Update the object file if necessary
  13. SetDisp.obj: SetDisp.c SetDisp.h
  14.     $(cc) $(cflags) $(cvars) $(cdebug) SetDisp.c
  15. # Update the executable file if necessary, and if so, add the resource back in.
  16. SetDisp.exe: SetDisp.obj SetDisp.res
  17.     $(link) $(linkdebug) $(guiflags) -out:SetDisp.exe SetDisp.obj SetDisp.res $(guilibs) shell32.lib
  18. cleanall:
  19.    del *.exe
  20.    del *.obj
  21.    del *.res
  22. clean:
  23.    del *.obj
  24.    del *.res