# ./src/fit/Makefile
#
# copyright 1988-1996 (C) John Overington
#
# ==============================================================================
#
# use the second line if your compiler has EXIT(), DATE(), and TIME():
JOYLIB=sysrout.o /usr/local/lib/libjoy.a
# JOYLIB=/usr/local/lib/libjoy.a
JOYLIB=-ljoy
JOYLIBDIR=-L../joylib

FFLAGS=-extend_source
#
# ==============================================================================
#
OBJECTS=rms.o fit.o rdsymfile.o

all:	rms

rms:	$(OBJECTS)
	$(F77) -o rms $(OBJECTS) $(JOYLIBDIR) $(JOYLIB)

# The dependancies

