#-----------------------------------------------------------
# MAKE file for SHELL
#
# example:  C>make shell
#
#-----------------------------------------------------------

comp=/Ot

shell.obj:	  shell.c
    msc shell $(comp);

shell.exe:	 shell.obj ..\byexface\byexface.obj
    link $**, $@;


