# This module was obtained from the International AVS Center # For more information, please send email to avsemail@ncsc.org # Makefile for : WrUcdAnim # Module Author : D. LE CORRE # Module Version # : 1.000 # Platform : HP 730 # Makefile Date : 08/30/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=$(ACFLAGS) $(AVS_INC) F77FLAGS=$(AFFLAGS) FFLAGS=$(F77FLAGS) AVS_EXE = $(ROOT)/usr/avs/bin/avs DEFINITIONS= OBJECTS=add_cell.o avs_interf.o check_file.o free_all.o get_file_pos.o get_st_name.o get_token.o get_ucd.o put_header.o wr_ascii.o wr_bin_3_0.o wr_bin_3_5.o wr_data.o wr_st_ascii.o wr_st_bin3.o wr_st_data.o wr_step.o wr_ucd.o LIBRARIES= WrUcdAnim: $(OBJECTS) $(CC) $(CFLAGS) -o WrUcdAnim $(OBJECTS) $(FLOWLIBS) $(LIBRARIES) .c.o: $(CC) $(CFLAGS) $(DEFINITIONS) -c $< #-DDEBUG .f.o: $(F77) $(F77FLAGS) -c $< clean: rm *.o