home *** CD-ROM | disk | FTP | other *** search
Makefile | 1987-11-21 | 1.5 KB | 57 lines |
- ######################################################################
- #
- # Makefile to build vt100 terminal emulator
- #
- # v2.7 870825 ACS - See the README file
- # v2.6 870227 DBW - bug fixes for all the stuff in v2.5
- # v2.5 870214 DBW - more additions (see readme file)
- # v2.4 861214 DBW - lots of fixes/additions (see readme file)
- # v2.3 861101 DBW - minor bug fixes
- # v2.2 861012 DBW - more of the same
- # v2.1 860915 DBW - new features (see README)
- # 860823 DBW - Integrated and rewrote lots of code
- # v2.0 860809 DBW - Major release.. LOTS of changes
- # v1.1 860720 DBW - Switches, 80 cols, colors, bug fixes
- # v1.0 860712 DBW - First version released
- #
- #
- # Don't forget to define the right compiler (MANX or LATTICE) in VT100.H
- #
- ######################################################################
-
- OBJS = vt100.o init.o window.o xmodem.o remote.o \
- kermit.o script.o expand.o
-
- vt100 : vt100.syms $(OBJS)
- ln -o vt100 $(OBJS) -lc
-
- vt100-w : vt100.syms $(OBJS)
- ln -w -o vt100-w $(OBJS) -lc
-
- vt100.syms : vt100.h
- cc -DBUGFIXES -A +Hvt100.syms vt100.h
-
- vt100.o : vt100.c
- cc -DBUGFIXES +Ivt100.syms vt100.c
-
- init.o : init.c
- cc -DBUGFIXES +Ivt100.syms init.c
-
- window.o : window.c
- cc -DBUGFIXES +Ivt100.syms window.c
-
- xmodem.o : xmodem.c
- cc -DBUGFIXES +Ivt100.syms xmodem.c
-
- remote.o : remote.c
- cc -DBUGFIXES +Ivt100.syms remote.c
-
- kermit.o : kermit.c
- cc -DBUGFIXES +Ivt100.syms kermit.c
-
- script.o : script.c
- cc -DBUGFIXES +Ivt100.syms script.c
-
- expand.o : expand.c
- cc -DBUGFIXES +Ivt100.syms expand.c
-