#
# Makefile for the Unify control programs
#
# History
# -------
# $Log: Makefile,v $
# Revision 1.3  1997/06/24  17:07:31  dieter
# Modified Makefile to pickup common targets and macro definitions from
# make.common.
#
# Revision 1.2  1997/05/08  19:39:16  dieter
# Moved definition of OUTPUT_FILE to Makefile so it can be defined based
# on the pwd rather than an absolute path.
#
#

PROG =	matmulfs

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

CDEFS=	-DOUTPUT_FILE=\"`pwd`/output\"
LIBS=

include ../make.common

# DO NOT DELETE THIS LINE - makedepend depends on it
