
## Include certain definitions about the computer you are dealing with
include ../MakeIncl.HODIF

OBJ	= Cinterface_interp.o \
          x_intp_cf_vc.o y_intp_cf_vc.o der0_1D_cf_vc_pre.o \
	  xy_intp_cf_vc.o der0_2D_cf_vc_pre.o

LIB	= libVertexCenteredInterps.a

INCLUDE = -I../include

default : lib

lib	: $(OBJ)
	/bin/rm -f $(LIB)
	ar -rs $(LIB) $(OBJ)
	cp $(LIB) ../lib/

clean	: 
	@rm -f *.o $(LIB) *~ ../lib/$(LIB)

.f.o :
	@echo
	@echo "Compiling file --" $<
	@echo "--------------"
	$(F77) -c $(FOPTIMIZATION) -o $@ $<
	@echo

.c.o :
	@echo
	@echo "Compiling file --" $<
	@echo "--------------"
	$(CC) -c $(INCLUDE) $(COPTIMIZATION) $(FCNAME) -o $@ $<
	@echo
