Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
980 B

  1. obj\*\urlhlink.def: urlhlink.src
  2. !IF $(386)
  3. !IF "$(LINKONLY)"!=""
  4. #MAPSYM=$(_WINBASE)\dev\tools\common\mapsym.exe -nologo
  5. MAPSYM=mapsym.exe -nologo
  6. !IF EXIST($(TARGETPATH)\i386\urlhlink.map)
  7. # generate the sym file from the map file
  8. urlhlink.sym: $(TARGETPATH)\i386\urlhlink.map
  9. $(MAPSYM) -o $(TARGETPATH)\i386\urlhlink.sym $(TARGETPATH)\i386\urlhlink.map
  10. binplace -R $(_NTTREE) $(TARGETPATH)\i386\urlhlink.sym
  11. binplace -R $(_NTTREE) $(TARGETPATH)\i386\urlhlink.map
  12. !else
  13. # generate the sym file from the dll with coff symbols
  14. urlhlink.sym: $(TARGETPATH)\i386\urlhlink.lib
  15. $(MAPSYM) -o $(TARGETPATH)\i386\urlhlink.sym $(TARGETPATH)\i386\urlhlink.map
  16. binplace -R $(_NTTREE) $(TARGETPATH)\i386\urlhlink.sym
  17. binplace -R $(_NTTREE) $(TARGETPATH)\i386\urlhlink.map
  18. !endif
  19. !else
  20. urlhlink.sym: $(TARGETPATH)\i386\urlhlink.map
  21. echo Only build sym file during link phase.
  22. !endif
  23. !endif
  24.