home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / comm / jmodem.zip / JMODEM next >
Text File  |  1990-06-20  |  1KB  |  49 lines

  1. #
  2. #
  3. #    MAKE file for JMODEM, the 'C' version.
  4. #    Created 01-FEB-1990        Richard B. Johnson
  5. #                                       405 Broughton Drive
  6. #                                       Beverly, Massachusetts 01915
  7. #                                       BBS (508) 922-3166
  8. #    Execute MAKE JMODEM
  9. #
  10. #    Revised 21-APR-1990        Richard B. Johnson
  11. #
  12. #    Changed this MAKE file after several "professional programmers"
  13. #    informed me that the previous one was too amateur and simplistic.
  14. #    In keeping with maintaining the highest degree of complexity possible
  15. #    to appease these bombastic mutants of diddly-wop, I made this file
  16. #    unreadable by incorporating macros for no useful purpose. The next
  17. #    revision will remove all spaces and tabs <grin>.
  18. #
  19. #
  20.     nam    = jmodem
  21.     headers = $(nam).h $(nam)
  22.         src     = $*.c
  23.     exe    = $(nam).exe
  24.     cmp    = CL /Gs /AS /c /J /Oais /W3 /DNOENV /Fl$*.cod $(src)
  25.     lnk    = Link/NOE/MAP/EXEPACK
  26.         objects = $(nam)_a.obj $(nam)_b.obj $(nam)_c.obj \
  27.                   $(nam)_d.obj $(nam)_e.obj $(nam)_f.obj
  28.  
  29. $(nam)_a.obj:        $(headers) $(src)
  30.             $(cmp)
  31.  
  32. $(nam)_b.obj:        $(headers) $(src)
  33.             $(cmp)
  34.  
  35. $(nam)_c.obj:        $(headers) $(src)
  36.             $(cmp)
  37.  
  38. $(nam)_d.obj:        $(headers) $(src)
  39.             $(cmp)
  40.  
  41. $(nam)_e.obj:        $(headers) $(src) uart.h
  42.             $(cmp)
  43.  
  44. $(nam)_f.obj:        $(headers) $(src) screen.h
  45.             $(cmp)
  46.  
  47. $(exe):            $(headers) $(objects)
  48.             $(lnk) $(objects), $(exe);
  49.