I got the following error after the <make> command is introduced
###########################################################
root@debian2:/home/leoromero/gretl-git# make
./builddate
build.h is current
make -C lib
make[1]: Entering directory '/home/leoromero/gretl-git/lib'
make[1]: *** No rule to make target '../lib/src/complex_def.h', needed by
'geneval.lo'. Stop.
make[1]: Leaving directory '/home/leoromero/gretl-git/lib'
Makefile:69: recipe for target 'lib' failed
make: *** [lib] Error 2
############################################################
I have previously ran the following commands to make the compilation in an AWS instance
Installing TextLive
# sudo add-apt-repository ppa:texlive-backports/ppa
# sudo apt-get update
# sudo apt-get install texlive-full
# sudo apt-get upgrade
GNUPLOT
# sudo apt-get install -y gnuplot
ImageMagick
# sudo apt-get install build-essential
# wget
https://www.imagemagick.org/download/ImageMagick.tar.gz
# tar xvzf ImageMagick.tar.gz
# cd ImageMagick-7...(tab)
# ./configure
# make
# sudo make install
# sudo ldconfig /usr/local/lib
# magick -version (it says it is propertly installed)
C-Libraries preinstalled:
# sudo apt-get install gcc
# sudo apt-get install autoconf
# sudo apt-get install automake (It is different in Grtl Documentation)
# sudo apt-get install libtool
# sudo apt-get install flex1
# sudo apt-get install bison
# sudo apt-get install gcc-doc
# sudo apt-get install libc6-dev
# sudo apt-get install libc-dev
# sudo apt-get install gfortran
# sudo apt-get install gettext
# sudo apt-get install -y pkg-config (It is not in Gretl Documentation)
Dev Libraries pre installed
- GLIB sudo apt-get install libglib2.0-dev
- GTK 3.0 sudo apt-get install libgtk-3-dev
- PNG apt-get install libpng-dev
- XSLT apt-get install libxslt1-dev
- LAPACK apt-get install liblapack-dev
- FFTW apt-get install libfftw3-dev
- READLINE apt-get install libreadline-dev
- ZLIB apt-get install zlib1g-dev
- XML apt-get install libxml2-dev
- GMP apt-get install libgmp-dev
- CURL apt-get install libcurl4-gnutls-dev
- MPFR apt-get install libmpfr-dev
- JSON apt-get install libjson-glib-dev (not in Gretl documentation)
- GTK apt-get install gtksourceview-3.0 (not in Gretl documentation)
Git Program cloned from:
# git clone
git://git.code.sf.net/p/gretl/git gretl-git
Finally when I get the: "Now type 'make' to build gretl." I received the
previously mentioned error above.
Please tell me what is wrong I have ran this process several times before, but in this
version is not running properly. Kind Regards