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.

46 lines
1.0 KiB

  1. #;
  2. #; Microsoft Confidential
  3. #; Copyright (C) Microsoft Corporation 1988-1991
  4. #; All Rights Reserved.
  5. #;
  6. #
  7. # Make file for ntfont.sys
  8. #
  9. # Modification History
  10. #
  11. # V-TORUM 13-Jul-1993 Ported for NT DOS Support
  12. #*********************** Makefile for ntfont.sys ****************************
  13. include ../../make.inc
  14. target =$(DEST)\ntfont.sys
  15. #
  16. ####################### Dependencies Begin Here ##########################
  17. #
  18. all: $(target)
  19. binplace -o $(ALT_PROJECT_TARGET) $(target)
  20. clean: cleanup all
  21. cleanup:
  22. cd $(DEST)
  23. if exist *.obj del *.obj
  24. if exist *.bin del *.bin
  25. if exist *.exs del *.exs
  26. if exist *.map del *.map
  27. if exist *.sym del *.sym
  28. if exist ntfont.sys del ntfont.sys
  29. cd ..\..\..
  30. $(DEST)\ntfont.obj : ntfont.asm \
  31. ntfont.inc \
  32. makefile.sub \
  33. $(inc)\struc.inc
  34. $(DEST)\ntfont.exs : $(DEST)\ntfont.obj \
  35. makefile.sub
  36. link16 $(DEST)\ntfont.obj,$(DEST)\ntfont.exs,$(DEST)\ntfont.map;
  37. $(target): $(DEST)\ntfont.exs