Paint_Rect.mak
上传用户:dq031136
上传日期:2022-08-08
资源大小:802k
文件大小:1k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. # Nmake macros for building Windows 32-Bit apps
  2. all: Paint_~1.exe
  3. # Update the resource if necessary
  4. Paint_~1.res: Paint_~1.rc Paint_~1.h
  5.     rc -r -fo Paint_~1.res Paint_~1.rc
  6. # Update the object file if necessary
  7. Paint_~1.obj: Paint_~1.cpp Paint_~1.h
  8.     $(cc) $(cdebug) $(cflags) $(cvars) Paint_~1.cpp
  9. # Update the executable file if necessary, and if so, add the resource back in.
  10. Paint_~1.exe: Paint_~1.obj Paint_~1.res
  11.     $(link) $(linkdebug) $(guiflags) -out:Paint_~1.exe Paint_~1.obj Paint_~1.res $(guilibs) advapi.lib