MAKEFILE
上传用户:carrie980
上传日期:2013-03-28
资源大小:1143k
文件大小:1k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. APPVER=4.0
  3. !include <win32.mak>
  4. !if "$(CPU)" == "i386" # .syms are useful for Win95
  5. SYM = vidcap32.sym
  6. !endif
  7. all: vidcap32.exe $(SYM)
  8. LIBS=msacm32.lib vfw32.lib winmm.lib shell32.lib
  9. OTHERCLOPTS=-DWIN32_LEAN_AND_MEAN -nologo -I. -I..include
  10. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I. -I..include
  11. # Update the resource if necessary
  12. vidcap.res: vidcap.rc vidcap.rcv
  13.     $(rc) $(rcflags) $(rcvars) $(OTHERRCOPTS) vidcap.rc
  14. # Update the object file if necessary
  15. .c.obj:
  16.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) $<
  17. # Update the executable file if necessary, and if so, add the resource back in.
  18. vidcap32.exe vidcap32.map:  
  19.                 vidcap.obj 
  20.                 arrow.obj   
  21.                 dialogs.obj 
  22.                 help.obj    
  23.                 profile.obj 
  24.                 rlmeter.obj 
  25.                 status.obj  
  26.                 toolbar.obj 
  27.                 vidframe.obj 
  28.                 vidcap.res
  29.     $(link) $(linkdebug) $(guiflags) -out:vidcap32.exe $** $(guilibs) $(LIBS) 
  30.          -map:$*.map
  31.     
  32. vidcap32.sym: $*.map
  33. mapsym $*.map
  34. clean:
  35.     @if exist vidcap32.exe del vidcap32.exe
  36.     @if exist *.obj del *.obj
  37.     @if exist *.map del *.map
  38.     @if exist *.sym del *.sym
  39.     @if exist *.res del *.res
  40.     @if exist *.pdb del *.pdb
  41.     @if exist *.exp del *.exp
  42.     @if exist *.lib del *.lib