home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / comm / jmodem.zip / TEST < prev    next >
Text File  |  1990-06-20  |  411b  |  18 lines

  1. #
  2. #    MAKE file to test JMODEM I/O without having to run it over a
  3. #    slow modem and phone line.
  4. #    Created    25-FEB-1990        Richard B. Johnson
  5. #
  6. #
  7.     nam    = test
  8.     headers = jmodem.h $(nam)
  9.         objects = $(nam).obj jmodem_c.obj jmodem_d.obj
  10.  
  11.     cc = CL /Gs /AS /J /c /Ois /W3 /DNOENV /Fl$*.cod $*.c
  12.  
  13. $(nam).obj:        $(headers) $*.c
  14.             $(cc)
  15.  
  16. $(nam).exe:        $(headers) $(objects)
  17.             Link $(objects), $*.exe;
  18.