# ----------------------------------------------------------------------
#
#	 *** BYE-PC 'MAKE' file for use with MASM 4.00 ***
#
# MAKE file for using MASM with BYE-PC. To create BYExxx.COM type
# the following command at the dos prompt (assuming that MASM 4.0,
# MAKE, LINK, and EXE2BIN are in the current directory or path name):
#
#	C>make bye {return}
#
#   NOTE: For IBM PC Macro Assembler 2.00 or greater, remove all
#	  of the options from the macro 'cmp' ('cmp=') to make it null.
#
# ----------------------------------------------------------------------
#
cmp=/V/Z/B60
pgm=bye300

$(pgm).obj:	    $(pgm).asm
    masm $(pgm) $(cmp);

$(pgm).com:	    $(pgm).obj
    link $(pgm);
    exe2bin $(pgm).exe $(pgm).com
    del $(pgm).exe

