Source code of Windows XP (NT5)
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.

51 lines
1.1 KiB

  1. # Makefile for share.exe
  2. #
  3. # Copyright (c) 1991, Microsoft Corporation
  4. #
  5. # History:
  6. # 13-Oct-1994 Kurt Perry (kurtp)
  7. # Created.
  8. #
  9. include ..\..\..\mvdm\dos\v86\make.inc
  10. incc =-I..\..\..\mvdm\dos\v86\h
  11. dest =doskbd.exe
  12. extcsw = -AS -Gs
  13. #
  14. ####################### dependencies begin here. #########################
  15. #
  16. all: $(dest)
  17. !IF "$(_NT386TREE)" != ""
  18. if exist $(_NT386TREE) binplace $(dest)
  19. !ENDIF
  20. !IF "$(_NTMIPSTREE)" != ""
  21. if exist $(_NTMIPSTREE) binplace $(dest)
  22. !ENDIF
  23. !IF "$(_NTALPHATREE)" != ""
  24. if exist $(_NTALPHATREE) binplace $(dest)
  25. !ENDIF
  26. clean:
  27. if exist *.obj del *.obj
  28. if exist *.exe del *.exe
  29. if exist *.com del *.com
  30. if exist *.map del *.map
  31. if exist *.lst del *.lst
  32. doskbd.obj: doskbd.c \
  33. makefile
  34. options.obj: options.c \
  35. options.h \
  36. makefile
  37. $(dest): doskbd.obj \
  38. options.obj
  39. !IFDEF NTVDM_BASED_BUILD
  40. link16 /MAP/LINE doskbd+options,$(dest),,..\..\..\mvdm\dos\v86\lib\;
  41. !ELSE
  42. $(lpath)\link /MAP/LINE doskbd+options,$(dest);
  43. !ENDIF
  44.