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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <ntwin32.mak>
  3. all: cliptext.exe
  4. # Update the resource if necessary
  5. cliptext.res: cliptext.rc cliptext.h
  6.     rc -r cliptext.rc
  7. cliptext.rbj: cliptext.res
  8.     cvtres -$(CPU) cliptext.res -o cliptext.rbj
  9. # Update the object file if necessary
  10. cliptext.obj: cliptext.c cliptext.h
  11.     $(cc) $(cflags) $(cvars) $(cdebug) cliptext.c
  12. # Update the executable file if necessary, and if so, add the resource back in.
  13. cliptext.exe: cliptext.obj cliptext.rbj cliptext.def
  14.     $(link) $(linkdebug) $(guiflags) -out:cliptext.exe cliptext.obj cliptext.rbj $(guilibs)