home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 307_01 / te < prev    next >
Text File  |  1990-03-20  |  499b  |  26 lines

  1. /*
  2. HEADER:     ;
  3. TITLE:        Simple terminal emulator make file;
  4. VERSION:    1.0;
  5.  
  6. DESCRIPTION:    "Make file for TE.C.";
  7.  
  8. WARNINGS:    "Microsoft specific.";
  9. SYSTEM:     MS-DOS v2 or later;
  10. FILENAME:    COMX;
  11.  
  12. SEE-ALSO:    TE.C, RS232.C;
  13. AUTHORS:    Hugh Daschbach;
  14. COMPILERS:    Microsoft v5.0,v5.1;
  15. */
  16. ########################################################################
  17. .c.obj:
  18.     cl -c -Gs -Zi -W3 $*.c
  19.  
  20. te.obj: te.c
  21.  
  22. rs232.obj: rs232.c
  23.  
  24. te.exe: te.obj rs232.obj
  25.     link te rs232 /co/noi,te,te/m;
  26.