#/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# *                                                                 *
# * Copyright (C) 1998 Timothy E. Dowling                           *
# *                                                                 *
# * This program is free software; you can redistribute it and/or   *
# * modify it under the terms of the GNU General Public License     *
# * as published by the Free Software Foundation; either version 2  *
# * of the License, or (at your option) any later version.          *
# * A copy of this License is in the file:                          *
# *   $EPIC_PATH/License.txt                                        *
# *                                                                 *
# * This program is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of  *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.            *
# *                                                                 *
# * You should have received a copy of the GNU General Public       *
# * License along with this program; if not, write to the Free      *
# * Software Foundation, Inc., 59 Temple Place - Suite 330,         *
# * Boston, MA  02111-1307, USA.                                    *
# *                                                                 *
# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#
#  This is the top visualization-software Makefile for the EPIC model.
#
#  T. Dowling 1/95
#

all:
	make -f Makefile.avs ; 
	make -f Makefile.fvl ; 
	make -f Makefile.rec ;
	@if [ -r /fvl/vscan ] ; then \
	  echo "Making vscan..." ; \
	  make -f Makefile.vscan ; \
	else \
	  echo ; \
	fi

clean:
	@rm -f core *o *BAK *bak *~ *% *.log

clear:
	@rm -f core *o *BAK *bak *~ *% *.log

install: 
	@if [ $(AVS_PATH) = none ] ; then \
	  echo AVS_PATH = $(AVS_PATH) ; \
	else \
	  cp $(AVS_PATH)/avs_library/list_dir $(EPIC_PATH)/bin ; \
	fi
	make install -f Makefile.avs ; 
	make install -f Makefile.fvl ; 
	make install -f Makefile.rec ;
	@if [ -r /fvl/vscan ] ; then \
	  echo "Installing vscan..." ; \
	  make install -f Makefile.vscan ; \
	else \
	  echo ; \
	fi

depend:
	make depend -f Makefile.avs ; 
	make depend -f Makefile.fvl ; 
	make depend -f Makefile.rec ;
	@if [ -r /fvl/vscan ] ; then \
	  make depend -f Makefile.vscan ; \
	fi

# DO NOT DELETE THIS LINE -- make depend depends on it.




