#  Main body of the installation makefile for the GALAHAD SBLS 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 = sbls
PACKAGE = SBLS

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

DEPENDENCIES = make_sbls_deps

#  other packages that depend on package

DEPENDS = bqpb cqp cro dqp eqp lpb lsqp qpb wcp

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

CDEPENDENCIES = make_ciface_sbls_deps

#  other C interface packages that depend on current interface package

CDEPENDS = bqpb_ciface cqp_ciface dqp_ciface \
           eqp_ciface lpb_ciface lsqp_ciface \
           qpb_ciface wcp_ciface

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

PYDEPENDENCIES =

#  other python interface packages that depend on current interface package

PYDEPENDS = bqpb_pyiface cqp_pyiface dqp_pyiface \
            eqp_pyiface lpb_pyiface lsqp_pyiface \
            qpb_pyiface wcp_pyiface

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

TESTDEPS = make_lms

#  tests to be performed (preprend with test_)

TESTS = test_full test_cutest

#  CUTEst example for tests

CUTEST_EXAMPLE = QPBAND.SIF

#  ===========================================================================
#  =================  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
