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

  1. #
  2. #    Created    25-MAR-1990        Richard B. Johnson
  3. #
  4. #
  5. #
  6.     headers = show
  7.         objects = show.obj
  8.  
  9.     cc = CL /Gs /J /AS /c /Ois /W3 $*.c
  10.  
  11. show.obj:        $(headers) $*.c
  12.                         $(cc)
  13.  
  14. show.exe:        $(headers) $(objects)
  15.             LINK/EXEPACK $*;
  16.