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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <win32.mak>
  3. TARGETNAME =    wavef32
  4. !if "$(CPU)" == "i386" # .syms are useful for Win95
  5. SYM = $(TARGETNAME).sym
  6. !endif
  7. all: $(TARGETNAME).dll $(SYM)
  8. OBJS= wavefile.obj factory1.obj extra.obj
  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. wavefile.res: wavefile.rc wavefile.rcv
  13.     $(rc) -r -DWIN32 $(OTHERRCOPTS) wavefile.rc
  14. # Update the object files if necessary
  15. factory1.obj: factory1.c wavefile.h
  16.     $(cc) $(cdebug) $(cflags) $(cvarsdll) $(OTHERCLOPTS) factory1.c
  17. extra.obj: extra.c extra.h
  18.     $(cc) $(cdebug) $(cflags) $(cvarsdll) $(OTHERCLOPTS) extra.c
  19. wavefile.obj: wavefile.c wavefile.h muldiv32.h
  20.     $(cc) $(cdebug) $(cflags) $(cvarsdll) $(OTHERCLOPTS) wavefile.c
  21. # Update the executable file if necessary, and if so, add the resource back in.
  22. $(TARGETNAME).dll $(TARGETNAME).map:  $(OBJS) wavefile.res
  23.     $(implib) -out:$(@B).lib -def:$(TARGETNAME).def $(OBJS)
  24.     $(link) $(linkdebug) $(dlllflags) -out:$*.dll  
  25.            $(@B).exp $(OBJS) wavefile.res $(olelibsdll) vfw32.lib winmm.lib 
  26.                -map:$*.map
  27.     
  28. $(TARGETNAME).sym: $*.map
  29. mapsym $*.map
  30. clean:
  31.     @if exist $(TARGETNAME).dll del $(TARGETNAME).dll
  32.     @if exist *.obj del *.obj
  33.     @if exist *.map del *.map
  34.     @if exist *.sym del *.sym
  35.     @if exist *.res del *.res
  36.     @if exist *.pdb del *.pdb
  37.     @if exist *.exp del *.exp
  38.     @if exist *.lib del *.lib