
#
#  Makefile for the Unify control programs
#
# History
# -------
# $Log: Makefile,v $
# Revision 1.7  1997/11/10  23:25:03  dieter
# Added two blank lines so the make depend with gcc will work.
#
# Revision 1.6  1997/06/24  16:52:03  dieter
# Modified Makefile to pickup common targets and macro definitions from
# make.common.
#
# Revision 1.5  1997/06/13  21:59:00  dieter
# Moved system wide defines to config.h
#
# Revision 1.4  1997/05/08  19:49:25  dieter
# Moved definition of OUTPUT_FILE to Makefile so it can be defined based
# on the pwd rather than an absolute path.
#
# Revision 1.3  1997/05/08  17:05:32  dieter
# Removed refresh target.  It is now handled by griff's Makefile.refresh.
#
# Revision 1.2  1997/04/11  21:23:43  dieter
# Added refresh target
#
#

PROG=  sor_ran
SRCS=  $(PROG).c func.c verify.c
OBJS=  $(SRCS:.c=.o)

HDRS=  func.h

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

include ../make.common

#
# If you need to add more rules, add them below here
#

# DO NOT DELETE THIS LINE -- makedepend depends on it


