1;; -*- Mode: lisp -*-
2;;
3;; Setup the share-subdirs-list.  This is a list of each subdirectory
4;; (basically) of share that contains code that can be run by maxima.
5;;
6;; A default version is checked in, but configure will update this
7;; with the correct values.  The default checked in version is useful
8;; if you're doing a lisp-only build without configure.  But configure
9;; is the preferred way to build.
10;;
11;; The file isn't directly created as share-subdirs.lisp but with an
12;; immediate step in order to make the autotools not delete the file
13;; we want to ship with the repo.
14(in-package :maxima)
15
16(defun share-subdirs-list ()
17  '#.(remove-if-not
18      #'stringp
19      ;; DO NOT EDIT THIS LIST.  It is automatically
20      ;; generated by configure.
21      '(
22"affine" "algebra" "algebra/charsets" "algebra/solver" "amatrix" "bernstein" "calculus" "cobyla" "cobyla/ex" "cobyla/lisp" "colnew" "colnew/ex1" "colnew/ex2" "colnew/ex3" "colnew/ex4" "colnew/lisp" "combinatorics" "contrib" "contrib/Eulix" "contrib/Grobner" "contrib/Zeilberger" "contrib/alt-display" "contrib/altsimp" "contrib/binsplit" "contrib/bitwise" "contrib/boolsimp" "contrib/coma" "contrib/diffequations" "contrib/diffequations/tests" "contrib/elliptic_curves" "contrib/elliptic_curves/figures" "contrib/format" "contrib/fresnel" "contrib/gentran" "contrib/gentran/man" "contrib/gentran/test" "contrib/gf" "contrib/integration" "contrib/levin" "contrib/lurkmathml" "contrib/maxima-odesolve" "contrib/maximaMathML" "contrib/mcclim" "contrib/namespaces" "contrib/noninteractive" "contrib/odes" "contrib/operatingsystem" "contrib/prim" "contrib/rand" "contrib/rkf45" "contrib/sarag" "contrib/smath" "contrib/state" "contrib/symplectic_ode" "contrib/trigtools" "contrib/unicodedata" "contrib/unit" "contrib/vector3d" "descriptive" "diff_form" "diff_form/tests" "diffequations" "distrib" "draw" "dynamics" "ezunits" "finance" "fourier_elim" "fractals" "graphs" "hypergeometric" "integequations" "integer_sequence" "integration" "lapack" "lapack/blas" "lapack/lapack" "lbfgs" "linearalgebra" "logic" "lsquares" "macro" "matrix" "minpack" "minpack/lisp" "misc" "mnewton" "multiadditive" "numeric" "numericalio" "odepack" "odepack/src" "orthopoly" "pdiff" "physics" "simplex" "simplex/Tests" "simplification" "solve_rat_ineq" "solve_rec" "sound" "stats" "stringproc" "sym" "tensor" "test_encodings" "to_poly_solve" "trigonometry" "utils" "vector" "z_transform"
23	)))
24