#  Main body of the installation makefile for the GALAHAD RPD package

#  Nick Gould, for GALAHAD productions
#  This version: 2023-05-11

#  include standard GALAHAD makefile defaults before package-specifics

include $(GALAHAD)/src/makedefs/defaults

#  ===========================================================================
#  ====================  package-dependent parts  ============================
#  ===========================================================================

#  package name

package = rpd
PACKAGE = RPD

#  auxiliary packages that current package depends on (prepend with make_)

DEPENDENCIES = make_dummy make_specfile make_sort make_zd11 \
               make_smt make_space make_lmt make_qpt make_lms

#  other packages that depend on package

DEPENDS = cdqp cqp dqp l1qp lpa lpb

#  auxiliary packages that the C interface to the current package depends
#  on (prepend with make_ciface_)

CDEPENDENCIES = make_ciface_common make_ciface_lms

#  other C interface packages that depend on current interface package

CDEPENDS = cqp_ciface dqp_ciface lpa_ciface lpb_ciface

#  auxiliary packages that the python interface to the current package depends
#  on (prepend with make_pyiface_)

PYDEPENDENCIES = make_pyiface_lms

#  other python interface packages that depend on current interface package

PYDEPENDS = cqp_pyiface dqp_pyiface lpa_pyiface lpb_pyiface

#  auxiliary packages that the C interface to the current package depends
#  on (prepend with make_ciface_)

#  auxiliary packages that are needed for tests (prepend with make_)

TESTDEPS =

#  tests to be performed (preprend with test_)

TESTS =

#  ===========================================================================
#  =================  end of package-dependent parts  ========================
#  ===========================================================================

#  include standard GALAHAD makefile definitions

include $(GALAHAD)/src/makedefs/definitions

#  include compilation and run instructions

include $(GALAHAD)/src/makedefs/instructions

#  include standard package compilation instructions

include $(GALAHAD)/src/makedefs/compile

#  include required package intermediaries

include $(GALAHAD)/src/makedefs/intermediaries

