Kerstin Hoef-Emden <[EMAIL PROTECTED]> writes:
> # Libs
> LIBS = -L./forms.h -L/usr/lib/libform.so.5 -L./seaview.h \
^
-L means search in this path for libraries, -l means link this
library. Also, the library seems to be calles libforms, not libform.
So use
-L/usr/X11R6/lib -lforms
You also need the libforms-dev package.
Falk

