#
# Makefile for sor_seq
#
# History
# -------
# $Log: Makefile,v $
# Revision 1.10  1997/11/10  23:29:28  dieter
# Added two blank lines so that the make denend with gcc will work.
#
# Revision 1.9  1997/06/24  16:55:59  dieter
# Modified Makefile to pickup common targets and macro definitions from
# make.common.
#
# Revision 1.8  1997/06/16  23:03:16  siva
# *** empty log message ***
#
# Revision 1.7  1997/06/13  21:59:18  dieter
# Moved system wide defines to config.h.
#
# Revision 1.6  1997/05/30  18:13:16  dieter
# Use /bin/pwd to determine the current directory.  $(PWD) does not work wit
# recursive makefiles.
#
# Revision 1.5  1997/05/27  20:25:56  dieter
# Fixed the depend target.
#
# Revision 1.4  1997/05/08  20:15:36  dieter
# Moved definition of OUTPUT_FILE to Makefile so it can be defined based
# on the pwd rather than an absolute path.
#
#

PROG =	sor_seq

SRCS = 	$(PROG).c func.c verify.c
HDRS =  func.h

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

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

include ../make.common

# DO NOT DELETE THIS LINE


