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

Windows编程

开发平台:

Visual C++

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