home *** CD-ROM | disk | FTP | other *** search
/ ftp.update.uu.se / ftp.update.uu.se.2014.03.zip / ftp.update.uu.se / pub / rainbow / msdos / latrobe / b / biodif.arc / MSBOOT.MAK < prev    next >
Text File  |  1987-01-19  |  2KB  |  68 lines

  1. #    TITLE:    MSBOOT.MAK
  2. #++
  3. #
  4. #    FACILITY:
  5. #
  6. #        Hard Disk Bootstrap
  7. #        
  8. #
  9. #    ABSTRACT:
  10. #
  11. #        MAKE descriptor file for the MS-DOS bootstrap.
  12. #
  13. #        This file is the descriptor file for the MAKE program
  14. #        and is used to define the build parameters for the
  15. #        MS-DOS bootstrap.
  16. #
  17. #    ENVIRONMENT:    Rainbow 100+
  18. #
  19. #    AUTHOR:        Richard Thomsen
  20. #
  21. #    AUTHOR:        Richard Thomsen
  22. #
  23. #    +--------------------------------------------------------------------+
  24. #    |+------------------------------------------------------------------+|
  25. #    || Copyright 1987.  Flame Point Computer Products, Incorporated.    ||
  26. #    ||                                                                  ||
  27. #    || This  notice and any statement of authorship must be reproduced  ||
  28. #    || on  all  copies.   Flame Point Computer Products,  Incorporated  ||
  29. #    || does not make any warranty,  express or implied,  or assume any  ||
  30. #    || liability or responsibility for the use of this software.        ||
  31. #    |+------------------------------------------------------------------+|
  32. #    +--------------------------------------------------------------------+
  33. #
  34. #----------------------------------------------------------------------
  35. #
  36. #    CREATION DATE:    17 January 1987
  37. #
  38. #    MODIFIED BY:
  39. #
  40. #--
  41. #
  42. #
  43. #   Target files are the object files for the MS-DOS bootstrap
  44. #
  45. MSBOOT.OBJ:    MSBOOT.ASM HDDEF.INC HOMDEF.INC DPDDEF.INC OSNDEF.INC FIRMDEF.INC FDISK.H
  46.     MASM $*/B63;
  47.  
  48. RX50DRV.OBJ:    RX50DRV.ASM IODEF.H FDISK.H
  49.     MASM $*/B63;
  50.  
  51. CHKMEDIA.OBJ:    CHKMEDIA.ASM FDISK.H
  52.     MASM $*/B63;
  53.  
  54. Z80PKT.OBJ:    Z80PKT.ASM
  55.     MASM $*/B63;
  56.  
  57. #
  58. #   Final target file is the executable file for the MS-DOS bootstrap
  59. #    Link it, but do not bother with symbol file,
  60. #    since it is not a normal COM file.
  61. #
  62. MSBOOT.COM:    MSBOOT.OBJ RX50DRV.OBJ CHKMEDIA.OBJ Z80PKT.OBJ
  63.     LINK $**, $*, $*/MAP;
  64.     EXE2BIN $* $@
  65.  
  66. #    ERASE $*.EXE
  67.  
  68.