1#	Xenix makefile for
2#		MicroEMACS 3.12
3#		(C)Copyright 1993 by Daniel Lawrence
4#		all rights reserved
5
6# options and arguments to the C compiler
7
8CFLAGS=	-O -I.
9
10# list of header files
11
12HFILES = estruct.h edef.h efunc.h epath.h ebind.h eproto.h
13
14#list of object files
15
16F1 = abbrev.o basic.o bind.o buffer.o
17F2 = char.o crypt.o display.o dolock.o
18F3 = eval.o exec.o file.o
19F4 = fileio.o unix.o input.o
20F5 = isearch.o line.o lock.o
21F6 = main.o mouse.o
22F7 = random.o region.o search.o replace.o
23F8 = tags.o window.o word.o
24
25# product list
26
27all:	emacs
28
29OFILES =	$(F1) $(F2) $(F3) $(F4) $(F5) $(F6) $(F7) $(F8)
30
31emacs:		$(OFILES)
32		$(CC) $(CFLAGS) $(OFILES) -ltermcap -lc -o bin/emacs
33