# This module was obtained from the International AVS Center
# For more information, please send email to avsemail@ncsc.org
 
# Makefile for 	   : ucd_cell_cones
# Module Author    : Ian Curington
# Module Version # : 1.000
# Platform	   : SUN 4/490
# Makefile Date    : 05/04/92

INC_FILE=$(ROOT)/usr/avs/include/Makeinclude
include $(INC_FILE)

AVS_LIBS=$(ROOT)/usr/avs/lib
BASELIBS=-lgeom -lutil -lm 
FLOWLIBS=-L$(AVS_LIBS) -lflow_c $(BASELIBS) $(LASTLIBS)
CSIMLIBS=-L$(AVS_LIBS) -lsim_c $(BASELIBS) $(LASTLIBS)
MODLIBS=-L$(AVS_LIBS) -lmdata -lmfilt -lmmapp -lmrend -lrf
F77_FLOWLIBS=-L$(AVS_LIBS) -lflow_f $(BASELIBS) $(LASTFLIBS)
F77_SIMLIBS=-L$(AVS_LIBS) -lsim_f $(BASELIBS) $(LASTFLIBS)
F77_BIND=$(ROOT)/usr/avs/bin/f77_binding
AVS_INC=-I. -I$(ROOT)/usr/avs/include
F77_INC=$(ROOT)/usr/avs/include
CFLAGS= $(AVS_INC)
F77FLAGS=$(AFFLAGS)
FFLAGS=$(F77FLAGS)
AVS_EXE=$(ROOT)/usr/avs/bin/avs

OBJECTS=ucd_cell_cones.o
LIBRARIES=

ucd_cell_cones:	$(OBJECTS)
	$(CC) $(CFLAGS) -o ucd_cell_cones $(OBJECTS) $(FLOWLIBS) $(LIBRARIES)

.c.o:
	$(CC) $(CFLAGS)  -c $< 

.f.o:
	$(F77) $(F77FLAGS)  -c $<

clean:
	rm *.o