As I start the compilation the scrept ./autogen.sh work fine and the make will stuck and did not able to run lemon.
Just use the preprocessed source (the zip file). Although it is primarily aimed at Windows, it actually works perfectly on all platforms. This is how I compile SQLite, making an archive for static linking:
$ unzip sqlite-source-3.0.8.zip
$ rm tclsqlite.c # Not needed $ gcc -DTHREADSAFE -O3 -c *.c # Adding -DNDEBUG will turn off assertion checking and
# improve performance (about 25%) at the expense of safety
$ ar r libsqlite3.a *.o
$ ranlib libsqlite3.a
Roger