I'd bet that it is a path problem. Look at your Makefile for the "install:" entry to figure out where it stuck the executable, and then check whether that is in your path.
Looking at Makefile.std, it looks like installing just does 'cp angband ..'. If that is true in your case and you want the executable somewhere useful (like /usr/local/bin), you should be able to use a symlink (ln -s).
Kevin
Looking at Makefile.std, it looks like installing just does 'cp angband ..'. If that is true in your case and you want the executable somewhere useful (like /usr/local/bin), you should be able to use a symlink (ln -s).
Kevin
Comment