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

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 = aviview.sym
  5. !endif
  6. all: aviview.exe $(SYM)
  7. OBJS=aviview.obj audplay.obj aviball.obj cdib.obj guid.obj regobjs.obj
  8. LIBS=vfw32.lib winmm.lib msacm32.lib uuid.lib
  9. OTHERCLOPTS=-DWIN32_LEAN_AND_MEAN -nologo -I..include
  10. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I..include
  11. # Update the resource if necessary
  12. aviview.res: aviview.rc aviview.h aviview.rcv aviview.ico
  13.     $(rc) -r -DWIN32 $(OTHERRCOPTS) aviview.rc
  14. # Update the object file if necessary
  15. audplay.obj: audplay.c audplay.h muldiv32.h
  16.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) audplay.c
  17. aviball.obj: aviball.c aviball.h
  18.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) aviball.c
  19. guid.obj: guid.c
  20.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) guid.c
  21. regobjs.obj: regobjs.cpp
  22.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) regobjs.cpp
  23. cdib.obj: cdib.c
  24.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) cdib.c
  25. aviview.obj: aviview.c aviview.h muldiv32.h audplay.h aviball.h
  26.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) aviview.c
  27. # Update the executable file if necessary, and if so, add the resource back in.
  28. aviview.exe aviview.map:  $(OBJS) aviview.res
  29.     $(link) $(linkdebug) $(guiflags) -out:aviview.exe $(OBJS) aviview.res $(guilibs) 
  30. $(LIBS) -map:$*.map
  31.     
  32. aviview.sym: $*.map
  33. mapsym $*.map
  34. clean:
  35.     @if exist aviview.exe del aviview.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