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 =    txtout32
  4. !if "$(CPU)" == "i386" # .syms are useful for Win95
  5. SYM = $(TARGETNAME).sym
  6. !endif
  7. all: $(TARGETNAME).dll $(SYM)
  8. OBJS=           txtout.obj drvproc.obj
  9. OTHERCLOPTS=-nologo -I. -I..include
  10. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I. -I..include
  11. # Update the resource if necessary
  12. txtout.res: txtout.rc txtout.h txtout.rcv
  13.     $(rc) -r -DWIN32 $(OTHERRCOPTS) txtout.rc
  14. # Update the object files if necessary
  15. drvproc.obj: drvproc.c txtout.h
  16.     $(cc) $(cdebug) $(cflags) $(cvarsdll) $(OTHERCLOPTS) drvproc.c
  17. txtout.obj: txtout.c txtout.h
  18.     $(cc) $(cdebug) $(cflags) $(cvarsdll) $(OTHERCLOPTS) txtout.c
  19. # Update the executable file if necessary, and if so, add the resource back in.
  20. $(TARGETNAME).dll $(TARGETNAME).map:    $(OBJS) txtout.res
  21.     $(implib) -out:$(@B).lib -def:$(TARGETNAME).def $(OBJS)
  22.     $(link) $(linkdebug) $(dllflags) -out:$*.dll 
  23.           $(@B).exp $(OBJS) txtout.res $(guilibsdll) winmm.lib -map:$*.map
  24.     
  25. $(TARGETNAME).sym: $*.map
  26. mapsym $*.map
  27. clean:
  28.     @if exist $(TARGETNAME).dll del $(TARGETNAME).dll
  29.     @if exist *.obj del *.obj
  30.     @if exist *.map del *.map
  31.     @if exist *.sym del *.sym
  32.     @if exist *.res del *.res
  33.     @if exist *.pdb del *.pdb
  34.     @if exist *.exp del *.exp
  35.     @if exist *.lib del *.lib