# @(#)Makefile  07/19/90
#
#
# Note: change these paths to conform to your system:

INCDIR = /soft/hdf/include
DFLIB  = /soft/hdf/lib/libdf.a
FC     = f77

CFLAGS = -g -I$(INCDIR)
FFLAGS = -g -I$(INCDIR)
LIBS   = -lm

.c:
	$(CC) $(CFLAGS) $<  $(DFLIB) $(LIBS) -o $@

.f:
	$(FC) $(FFLAGS) $<  $(DFLIB) $(LIBS) -o $@

all:	allc allf

allc:	speedtest 

allf:	speedtestF

cleanup:
	rm speedtest speedtestF 
	rm fa fb fc

