# @(#)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) -DSUN
FFLAGS = -g -I$(INCDIR) -DSUN
LIBS   = -lm

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

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

all:	allc allf

allc:	getslices putslices

allf:	

cleanup:
	rm getslices putslices

