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

Windows编程

开发平台:

Visual C++

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