home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d114 / vt100.lha / Vt100 / Makefile < prev    next >
Makefile  |  1987-11-22  |  2KB  |  57 lines

  1. ######################################################################
  2. #
  3. # Makefile to build vt100 terminal emulator
  4. #
  5. #    v2.7 870825 ACS - See the README file
  6. #    v2.6 870227 DBW - bug fixes for all the stuff in v2.5
  7. #    v2.5 870214 DBW - more additions (see readme file)
  8. #    v2.4 861214 DBW - lots of fixes/additions (see readme file)
  9. #    v2.3 861101 DBW - minor bug fixes
  10. #    v2.2 861012 DBW    - more of the same
  11. #    v2.1 860915 DBW - new features (see README)
  12. #         860823 DBW - Integrated and rewrote lots of code
  13. #    v2.0 860809 DBW    - Major release.. LOTS of changes
  14. #     v1.1 860720 DBW    - Switches, 80 cols, colors, bug fixes
  15. #     v1.0 860712 DBW    - First version released
  16. #
  17. #
  18. # Don't forget to define the right compiler (MANX or LATTICE) in VT100.H
  19. #
  20. ######################################################################
  21.  
  22. OBJS    = vt100.o init.o window.o xmodem.o remote.o \
  23.       kermit.o script.o expand.o
  24.  
  25. vt100    : vt100.syms $(OBJS)
  26.     ln -o vt100 $(OBJS) -lc
  27.  
  28. vt100-w    : vt100.syms $(OBJS)
  29.     ln -w -o vt100-w $(OBJS) -lc
  30.  
  31. vt100.syms : vt100.h
  32.     cc -DBUGFIXES -A +Hvt100.syms vt100.h
  33.  
  34. vt100.o    : vt100.c
  35.     cc -DBUGFIXES +Ivt100.syms vt100.c
  36.  
  37. init.o    : init.c
  38.     cc -DBUGFIXES +Ivt100.syms init.c
  39.  
  40. window.o : window.c
  41.     cc -DBUGFIXES +Ivt100.syms window.c
  42.  
  43. xmodem.o : xmodem.c
  44.     cc -DBUGFIXES +Ivt100.syms xmodem.c
  45.  
  46. remote.o : remote.c
  47.     cc -DBUGFIXES +Ivt100.syms remote.c
  48.  
  49. kermit.o : kermit.c
  50.     cc -DBUGFIXES +Ivt100.syms kermit.c
  51.  
  52. script.o : script.c
  53.     cc -DBUGFIXES +Ivt100.syms script.c
  54.  
  55. expand.o : expand.c
  56.     cc -DBUGFIXES +Ivt100.syms expand.c
  57.