Don't mind for the questions (although some of them might be easily answered by some DuckDuckGo/Starpage/Google queries...)...
1. The 210205_LFS-wok.tar.xz I pushed to my webspace (for the link look at one of the previous posts) is the RESULT of my compiling as LFS describes. So no, you don't HAVE to do it all yourself. But I recommend going through the procedure one time or another, because LFS describes quite clearly, how a linux system is set up and what the commands mean. Therefore, to gain a better understandig of what linux is about and how it is set up, LFS is a very good compilation.
2. The testing is fast, but finding the errors and resolving them takes time. Sometimes LOTS of time...
3. if by gmake you mean GNU make, it depends. Most programs are quite straightforward, as you just have to type ./configure && make && make install
and the Makefile scans your system and makes all the necessary adjustments (as long as you have the necessary dependencies already installed). But the make system wouldn't really be the place to go for you. -> 4.
4. The wok (or better the cookutils) is a system of scripts the genius founding fathers of Slitaz figured out to almost automatically produce ready-to-go packages (-> .tazpkg).
As detailed in the "Cookbook" (to be found on the Slitaz Documentation page), for every package there is a "recipe" to be found that provides the details for the package: where the sources can be downloaded from, how it is compiled, which parts will have to be packed into which subpackage (for example readline and readline-dev or look at the util-linux subpackages...).
So when your system is setup with a local wok (which is as easy as tazpkg -gi cookutils && cook setup-wok
) then you should be ready to cook packages with a simple cook <package>
command.
So far the theory; with the LFS-wok I have built, there should be an already working x86_64 wok.
After unpacking (tar xz 210205_LFS-wok.tar.xz
) you can enter the environment with the provided "chroot" script (you are then enclosed in a chroot prison, that can't harm your host system, since the only way out is typing "exit". The chroot can't access your outer host file system.
What you need are the recipes in the wok, shann has provided a link to his x86_64 wok somewhere in the other "Slitaz future" thread.
With the recipes, you may start to cook packages by typing "cook <pkg>" and could support by testing, which packages build fine and where you encounter errors (and which ones). As soon as the wok proves to be stable and the recipes entail all the Slitaz-cooking packages, there will be a lot to do.
5. should be answered by 4., since the task at hand is to build x86_64 packages to set up a 64bit-version of Slitaz...
I hope I could be of any help and didn't puzzle you even more...