- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
We could try, if we knew how you got into "this".
How were the objects compiled, and how was the linking attempted? In particular, was ld invoked directly? Did you use a makefile? --- etc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
# Following definition is required. You may adapt it to your needs.
STDROOT=${PWD}
# Following definitions are required. Do not change them.
SRCDIR=$(STDROOT)
OBJDIR=$(STDROOT)
# Define the name of the library
NAME=gme2hrm
# Load the binary names
include FileNames
# Load compiler options
include Options
# Load the list of object files
include Objfiles
# Define the calls for compiling
FTN=$(FTNCALL) -c $(FTNLST) $(FTNDEB) $(FTNANSI)
CC=$(CCALL) -c $(CC_LST) $(CC_DEB) $(CC_ANSI)
# Load the search path names for object libraries
# and the additional object libraries for linking
include LinkLibs
# Define include files for external usage
PUBFILES=
# Define plane object files for external usage
PUBOBFIL=
# Do all the compiling and linking stuff
# /SX/usr/bin/sxar For NEX SX
all: $(OBJFILES) $(PUBOBFIL)
rm -f $(NEWLIB)
ar qv $(NEWLIB) $(OBJFILES)
for MAIN in $(BINARIES) ; do \
if [ $${MAIN} != 'IGNORE' ] ; then \
$(FTNCALL) -o $${MAIN} $(OBJFILES) $(EXTOBJ) $(LINKOPTS) $(LIBPATHS) $(LIBS) 2>&1 >> $${MAIN}.map; \
fi \
done
# Cleanup
clean:
rm -f $(OBJDIR)/*.o $(OBJDIR)/*.l* $(OBJDIR)/*.L* $(OBJDIR)/*.kmo $(OBJDIR)/*.mod
# Load the dependencies list
include ODependencies
#

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page