#/bin/sh ############################################################### # $Author$ # $Date$ # $Revision$ # # Copyright 2001 California Institute of Technology # See file License.txt for licensing information # ############################################################### build_f90=@BUILD_F90@ build_python=@BUILD_PYTHON@ build_particles=@BUILD_PARTICLES@ all: cd src; @MAKE@ cd cxx; @MAKE@ cd clib/src; @MAKE@ ifeq ($(build_f90),1) cd fortran/src; @MAKE@ endif ifeq ($(build_particles),1) cd cads; @MAKE@ endif clean: cd src; @MAKE@ clean cd cxx/src; @MAKE@ clean cd clib/src; @MAKE@ clean cd python; @MAKE@ clean ifeq ($(build_f90),1) cd fortran/src; @MAKE@ clean endif ifeq ($(build_particles),1) cd cads; @MAKE@ clean endif depends: cd src; @MAKE@ depends cd cxx/src; @MAKE@ depends cd clib/src; @MAKE@ depends ifeq ($(build_f90),1) cd fortran/src; @MAKE@ depends endif ifeq ($(build_particles),1) cd cads; @MAKE@ depends endif install: cd src; @MAKE@ install cd cxx/src; @MAKE@ install cd clib/src; @MAKE@ install ifeq ($(build_f90),1) cd fortran/src; @MAKE@ install endif ifeq ($(build_particles),1) cd cads; @MAKE@ install endif # end of file