
#
#  Makefile for the Unify control programs
#
# History
# -------
# $Log: Makefile,v $
# Revision 1.1  1997/10/01  14:48:05  suwen
# Initial revision
#
# 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=  tsp
SRCS=  $(PROG).c pq.c read_tsp.c solve.c tours.c
OBJS=  $(SRCS:.c=.o)

HDRS=  

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
