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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <ntwin32.mak>
  3. !if "$(CPU)" == "i386" # .syms are useful for Win95
  4. SYM = captest.sym
  5. !endif
  6. all: captest.exe $(SYM)
  7. OBJS= captest.obj dialogs.obj
  8. OTHERCLOPTS=-DWIN32_LEAN_AND_MEAN -nologo -I. -I..include
  9. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I. -I..include
  10. # Update the resource if necessary
  11. captest.res: captest.rc captest.h captest.dlg captest.rcv captest.ico
  12.     $(rc) -r -DWIN32 $(OTHERRCOPTS) captest.rc
  13. # Update the object file if necessary
  14. dialogs.obj: dialogs.c captest.h
  15.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) dialogs.c
  16. captest.obj: captest.c captest.h
  17.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) captest.c
  18. # Update the executable file if necessary, and if so, add the resource back in.
  19. captest.exe captest.map:  $(OBJS) captest.res
  20.     $(link) $(linkdebug) $(guiflags) -out:captest.exe $(OBJS) captest.res $(guilibs) 
  21. vfw32.lib winmm.lib -map:$*.map
  22.     
  23. captest.sym: $*.map
  24. mapsym $*.map
  25. clean:
  26.     @if exist captest.exe del captest.exe
  27.     @if exist *.obj del *.obj
  28.     @if exist *.map del *.map
  29.     @if exist *.sym del *.sym
  30.     @if exist *.res del *.res
  31.     @if exist *.pdb del *.pdb
  32.     @if exist *.exp del *.exp
  33.     @if exist *.lib del *.lib