diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-05 17:00:19 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-05 17:00:19 -0400 |
commit | 7ae00d2fe82d40a56962c09dafd279ef3535aa3f (patch) | |
tree | 3c84975f6a317e4714c655bed51d0db22b3c3955 | |
parent | fc92f346a1e86c02f15896966428857b1de41f5f (diff) | |
download | moog-7ae00d2fe82d40a56962c09dafd279ef3535aa3f.tar.gz |
README.md
-rw-r--r-- | README.md | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -1,18 +1,22 @@ # Building ``` -$ make SMLIB=/path/to/sm/lib +$ ./configure +$ make ``` -If you have GCC v10 or greater, do: +# Installation ``` -$ make MODERN_GCC=1 SMLIB=/path/to/sm/lib +$ ./configure --prefix=$HOME/local/moog --with-sm=$HOME/local/sm/lib +$ make +$ make install ``` -# Executing +# Run ``` -$ export MOOG_DATA=`pwd` -$ ./MOOG [filename.par] +$ export PATH="$HOME/local/moog/bin:$PATH" +$ hash -r +$ MOOG [filename.par] ``` |