home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / modem / byepc300.arc / MAKEFILE < prev    next >
Text File  |  1987-09-03  |  769b  |  27 lines

  1. # ----------------------------------------------------------------------
  2. #
  3. #     *** BYE-PC 'MAKE' file for use with MASM 4.00 ***
  4. #
  5. # MAKE file for using MASM with BYE-PC. To create BYExxx.COM type
  6. # the following command at the dos prompt (assuming that MASM 4.0,
  7. # MAKE, LINK, and EXE2BIN are in the current directory or path name):
  8. #
  9. #    C>make bye {return}
  10. #
  11. #   NOTE: For IBM PC Macro Assembler 2.00 or greater, remove all
  12. #      of the options from the macro 'cmp' ('cmp=') to make it null.
  13. #
  14. # ----------------------------------------------------------------------
  15. #
  16. cmp=/V/Z/B60
  17. pgm=bye300
  18.  
  19. $(pgm).obj:        $(pgm).asm
  20.     masm $(pgm) $(cmp);
  21.  
  22. $(pgm).com:        $(pgm).obj
  23.     link $(pgm);
  24.     exe2bin $(pgm).exe $(pgm).com
  25.     del $(pgm).exe
  26.  
  27.