Ok, `make` is done, let's see if the binary is there somewhere (notice `rev-cut-rev` pattern that I totally stole somewhere, not discovered myself):
`find -type f | rev | cut -d\/ -f1 | rev | grep -e '^poke'`
Now that we know that such binary exists, we can find it like this:
`find -type f | grep -e '/poke$'`
It ended up being in `./poke` directory. 🤦♀️
OK, it didn't work because default prefix is LFS, let's do `configure --prefix="$(pwd)"`.
`cat Makefile | grep prefix` shows `prefix = /home/sweater/gnu/poke-1.0/build`...
Okay, local install succeeded: