# "@(#)Makefile 2.3 Stellar 90/08/17" # Copyright 1989 by # Stellar Computer Inc. # All Rights Reserved # # This software comprises unpublished confidential information of # Stellar Computer Inc. and may not be used, copied or made # available to anyone, except in accordance with the license # under which it is furnished. # # This file is under sccs control at Stellar in: # @uranus/sccs1.p/avs/examples/s.Makefile # # AVS example modules Makefile for Generic-AVS # include $(ROOT)/usr/avs/include/Makeinclude BASELIBS=-lgeom -lutil -lm FLOWLIBS=-L$(ROOT)/usr/avs/lib -lflow_c $(BASELIBS) CSIMLIBS=-L$(ROOT)/usr/avs/lib -lsim_c $(BASELIBS) F77_FLOWLIBS=-L$(ROOT)/usr/avs/lib -lflow_f $(BASELIBS) F77_SIMLIBS=-L$(ROOT)/usr/avs/lib -lsim_f $(BASELIBS) F77_BIND = $(ROOT)/usr/avs/bin/f77_binding AVS_INC = -I$(ROOT)/usr/avs/include CFLAGS=-g $(ACFLAGS) $(AVS_INC) F77FLAGS=$(AFFLAGS) $(AVS_INC) FFLAGS=$(F77FLAGS) all: read_F3D # For software integration, don't build anything because the include files # get messed up. si_build: read_F3D: read_F3D.o $(CC) $(CFLAGS) -o read_F3D read_F3D.o $(FLOWLIBS)