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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <win32.mak>
  3. all: showdib.exe
  4. # Update the resource if necessary
  5. showdib.res: showdib.rc showdib.h
  6.     rc $(rcflags) $(rcvars)  showdib.rc
  7. # Update the object file if necessary
  8. showdib.obj: showdib.c showdib.h
  9.     $(cc) $(cflags) $(cvars) $(cdebug) showdib.c
  10. print.obj: print.c showdib.h
  11.     $(cc) $(cflags) $(cvars) $(cdebug) print.c
  12. dlgopen.obj: dlgopen.c showdib.h
  13.     $(cc) $(cflags) $(cvars) $(cdebug) dlgopen.c
  14. dib.obj: dib.c showdib.h
  15.     $(cc) $(cflags) $(cvars) $(cdebug) dib.c
  16. drawdib.obj: drawdib.c showdib.h
  17.     $(cc) $(cflags) $(cvars) $(cdebug) drawdib.c
  18. # Update the executable file if necessary, and if so, add the resource back in.
  19. showdib.exe: showdib.obj print.obj dib.obj dlgopen.obj drawdib.obj showdib.res showdib.def
  20.     $(link) $(linkdebug) $(guiflags) -out:showdib.exe showdib.obj print.obj dib.obj dlgopen.obj drawdib.obj showdib.res $(guilibs)