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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=WINNT
  3. !include <ntwin32.mak>
  4. all: plgblt.exe
  5. # Update the resource if necessary
  6. plgblt.res: plgblt.rc plgblt.h
  7.     rc $(rcvars) $(rcflags) -r -fo plgblt.res plgblt.rc
  8. # Inference rule for updating the object files
  9. .c.obj:
  10.     $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  11. # Update the executable file if necessary, and if so, add the resource back in.
  12. plgblt.exe: plgblt.obj track.obj bitmap.obj plgblt.res plgblt.def
  13.     $(link) $(linkdebug) $(guiflags) -out:plgblt.exe plgblt.obj track.obj bitmap.obj plgblt.res $(guilibs)
  14. # Clean up everything except .exe file
  15. clean:
  16.     del *.obj *.res