# $Header: Makefile,v 1.8 92/06/03 17:07:44 chu mp310d $
#
#                   Copyright (c) 1991
#                   MasPar Computer Corporation
#                   All Rights Reserved
#
#   This program has been licensed subject to restrictions
#   on reproduction, use and disclosure and this notice
#   does not imply that the program or the related ideas
#   or algorithms are in the public domain.
#

MPL_CC = mpl_cc
CFLAGS =

OBJS   =	\
		fe_to_mplabb.o \
		display.o \
		oneDarray_to_vex.o \
		oneDarray_to_vey.o \
		cc2Darray_to_mat.o \
		show.o

EXEC   = fe_to_mplabb

all:		$(EXEC)
			@clear&
			@$(EXEC)

$(EXEC):	$(OBJS)
			$(MPL_CC) -o $@ $(OBJS) 

clean:
			rm -f $(EXEC) $(OBJS)

# Compilation rules
#
.SUFFIXES:
.SUFFIXES:	.m .c .o

.m.o:
			$(MPL_CC) $(CFLAGS) -c $<

.c.o:
			$(MPL_CC) $(CFLAGS) -c $<
