home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_12 / 9n12090a < prev    next >
Text File  |  1991-07-27  |  543b  |  20 lines

  1. #     LISTING 7    TERM.MK
  2. # Microsoft C 5.1 Make file for UART Library
  3. # and TERM demo program.
  4. #
  5.  
  6. uartlow.obj: uartlow.c uart.h uartmacs.c
  7.    cl /AL /Zp /Ox /c /W3 uartlow.c > uartlow.err
  8.  
  9. uartapi.obj: uartapi.c uart.h uartmacs.c
  10.    cl /AL /Zp /c /W3 uartapi.c > uartapi.err
  11.  
  12. testasy.obj: testasy.c uart.h uartmacs.c
  13.    cl /AL /Zp /c /W3 testasy.c > testasy.err
  14.  
  15. term.obj: term.c uart.h
  16.    cl /AL /Zp /c /W3 term.c > term.err
  17.  
  18. term.exe: uartlow.obj uartapi.obj testasy.obj term.obj
  19.    link term+uartapi+testasy+uartlow ;
  20.