AS i thought, it worked flawlessly. Hmm. Slack 9 uses GCC 3.2 doesn't it?
It worked for me using CFLAGS="-mcpu=athlon-xp -O4 -pipe"
I did find a slack package for an older version here:
http://www.linuxpackages.net/redirec.../Eterm-0.8.10/
Its for slack7 though. Also, you could probably use rpm2tgz and install the RPM from the eterm.org site.
Upon examining the makefile, I found this:
Code:
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
Which means that between the --mode=compile and -c you should have the name of your C compiler (gcc) check that the CC environment variable is set (echo $CC in a command line) if it isn't set, export it.
Just in case you are interested means that GCC should compile and assemble the code, but not link it into an executable.
If all else fails, try building that specific target by hand, then the make may continue.
I hope at least some of that helps you.