#
#	MAKE file to test JMODEM I/O without having to run it over a
#	slow modem and phone line.
#	Created	25-FEB-1990		Richard B. Johnson
#	Revised 02-JAN-1991		Richard B. Johnson
#
#	Changed the warning-level to /W4 in the Microsoft CL command to
#	be compatible with Microsoft's C600 highest level of error checking.
#
	nam	= test
	headers = jmodem.h $(nam)
        objects = $(nam).obj jmodem_c.obj jmodem_d.obj

	cc = CL /Gs /AS /J /c /Ois /W4 /DNOENV /FPi $*.c

$(nam).obj:		$(headers) $*.c
			$(cc)

$(nam).exe:		$(headers) $(objects)
			Link $(objects), $*.exe;
