OK, here are my link script details.
I use one main LNK file wich calls another.
Here is the main link file FUTIL.LNK
-------------------------------------------------------
#
# FUTIL.LNK
#
OUTPUT \futil\futil.exe
fi futil
BEGINAREA
fi main
ENDAREA
#
#
# Here I call a second link file FULIB.LNK
#
@FULIB.LNK
-------------------------------------------------------
And this is FULIB.LNK wich is called in the last line
of FUTIL.LNK
-------------------------------------------------------
#
# FULIB.LNK
#
ALLOCATE DBFCDX
ALLOCATE _DBFCDX
#
# My own and 3rd party libraries in an overlay area
#
BEGINAREA
# My own libraries...
ALLOCATE mylib
ALLOCATE fulib
# 3rd party libraries here
# The Class

library
ALLOCATE CLASSY
# The FAXUAL library (CAS complient FAX functions)
ALLOCATE FAXUAL
ENDAREA
-------------------------------------------------------
Nothing much to it, I think.
Regards