# $Id: Makefile,v 1.3 1996/06/04 08:54:29 paul Exp $
#
# Header file dependencies aren't listed in the Makefile - .KEEP_STATE
# is relied upon to look after these automatically (they can always be
# generated using mkmf(1)).
#

CC=	mcc  
CFLAGS= -D_MINIX
LD=     mcc

HDRS	      = dutch.h	ebind.h edef.h efunc.h elang.h english.h \
		epath.h estruct.h etype.h evar.h french.h \
		german.h platin.h spanish.h

LDFLAGS	      =

LIBS	      =

PROGRAM	      = uemacs

SRCS	      = basic.c bind.c buffer.c char.c crypt.c display.c eval.c \
		exec.c file.c fileio.c input.c isearch.c line.c lock.c \
		main.c random.c region.c search.c tcap.c unix.c \
		window.c word.c

OBJS= $(SRCS:.c=.o)

.KEEP_STATE:

all:		uemacs

uemacs: $(OBJS)
	mcc -o uemacs -S 10kw $(OBJS) $(LIBS)

clean: 
	rm -f uemacs $(OBJS)
	
