head	1.8;
access;
symbols;
locks
	vandys:1.8; strict;
comment	@# @;


1.8
date	2001.10.05.10.26.48;	author vandys;	state Exp;
branches;
next	1.7;

1.7
date	2001.10.05.10.22.00;	author vandys;	state Exp;
branches;
next	1.6;

1.6
date	96.05.26.05.46.52;	author vandys;	state Exp;
branches;
next	1.5;

1.5
date	93.05.15.21.09.58;	author vandys;	state Exp;
branches;
next	1.4;

1.4
date	91.12.26.23.26.41;	author ajv;	state Exp;
branches;
next	1.3;

1.3
date	91.10.10.15.45.12;	author vandys;	state Exp;
branches;
next	1.2;

1.2
date	90.12.03.14.50.44;	author vandys;	state Exp;
branches;
next	1.1;

1.1
date	90.08.31.08.36.27;	author vandys;	state Exp;
branches;
next	;


desc
@Makefile
@


1.8
log
@*** empty log message ***
@
text
@CC=gcc
OBJS=te_chario.o te_data.o te_exec0.o te_exec1.o \
	te_exec2.o te_main.o te_rdcmd.o te_srch.o te_subs.o \
	te_utils.o te_window.o
CFLAGS=-O -g
LIBS=-ltermcap

te: $(OBJS)
	rm -f te
	$(CC) $(CFLAGS) -o te $(OBJS) $(LIBS)

clean:
	rm -f core *.o tags

clobber: clean
	rm -f te teco
@


1.7
log
@Port to VSTa
@
text
@d9 1
@


1.6
log
@Fix CTL, drop traditional behavior
@
text
@d2 1
a2 1
OBJS= te_chario.o te_data.o te_exec0.o te_exec1.o \
d5 2
a6 2
CFLAGS= -O
LIBS= -ltermcap
@


1.5
log
@Use -traditional for CTL() macro, use BSD-ish termcap lib
@
text
@d1 1
a1 1
CC=gcc -traditional
@


1.4
log
@Get rid of -lmalloc; m88k already has fixed malloc as default
@
text
@d1 1
d6 1
d9 1
a9 1
	$(CC) $(CFLAGS) -o te $(OBJS) -lcurses
@


1.3
log
@Convert to Makefile format from nmake
@
text
@d7 1
a7 1
	$(CC) $(CFLAGS) -o te $(OBJS) -lcurses -lmalloc
@


1.2
log
@Turn into nmakefile
@
text
@d1 13
a13 6
te :: te_data.o te_exec0.o te_exec1.o te_exec2.o te_main.o te_rdcmd.o \
		te_srch.o te_subs.o te_utils.o te_window.o te_chario.c \
		te_defs.h $(<)_data.o $(<)_exec0.o $(<)_exec1.o \
		$(<)_exec2.o $(<)_main.o $(<)_rdcmd.o $(<)_srch.o \
		$(<)_subs.o $(<)_utils.o $(<)_window.o $(<)_chario.o \
		-ltermcap -lmalloc
@


1.1
log
@Initial revision
@
text
@d1 6
a6 26
##
##  TECO MAKEFILE
##

# Debugging or optimizing?
#CFLAGS	= -g
CFLAGS	= -O
#CFLAGS= -pg
TERMCAP	= -ltermcap

OBJECTS	= te_data.o te_exec0.o te_exec1.o te_exec2.o te_main.o te_rdcmd.o \
	te_srch.o te_subs.o te_utils.o te_window.o

te:		$(OBJECTS) te_chario.o
	$(CC) -o te $(CFLAGS) $(OBJECTS) te_chario.o $(TERMCAP)

tex:		$(OBJECTS) te_chx.o
	$(CC) -o tex $(CFLAGS) $(OBJECTS) te_chx.o $(TERMCAP)

$(OBJECTS) te_chario.o te_chx.o:	te_defs.h
te_chx.o:				te_chario.c
	cp te_chario.c te_chx.c
	$(CC) -DDEBUG $(CFLAGS) -c te_chx.c

clean:
	rm -f *.o core a.out te teco
@
