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.

48 lines
1.1 KiB

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