179 lines
3.7 KiB
Makefile
179 lines
3.7 KiB
Makefile
# Process this file with automake to generate Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS =
|
|
|
|
SUBDIRS = po testsuite
|
|
|
|
tooldir = $(exec_prefix)/$(target_alias)
|
|
|
|
ACLOCAL_AMFLAGS = -I ../bfd -I ../config
|
|
|
|
AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CXXFLAGS)
|
|
|
|
INCLUDES = \
|
|
-I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../elfcpp \
|
|
-DLOCALEDIR="\"$(datadir)/locale\"" \
|
|
-DBINDIR="\"$(bindir)\"" -DTOOLBINDIR="\"$(tooldir)/bin\"" \
|
|
@INCINTL@
|
|
|
|
LIBIBERTY = ../libiberty/libiberty.a
|
|
|
|
if THREADS
|
|
THREADSLIB = -lpthread
|
|
endif
|
|
|
|
AM_YFLAGS = -d
|
|
|
|
noinst_PROGRAMS = ld-new
|
|
noinst_LIBRARIES = libgold.a
|
|
|
|
CCFILES = \
|
|
archive.cc \
|
|
common.cc \
|
|
defstd.cc \
|
|
dirsearch.cc \
|
|
dynobj.cc \
|
|
dwarf_reader.cc \
|
|
ehframe.cc \
|
|
errors.cc \
|
|
fileread.cc \
|
|
gold.cc \
|
|
gold-threads.cc \
|
|
layout.cc \
|
|
merge.cc \
|
|
object.cc \
|
|
options.cc \
|
|
output.cc \
|
|
parameters.cc \
|
|
readsyms.cc \
|
|
reloc.cc \
|
|
resolve.cc \
|
|
script.cc \
|
|
symtab.cc \
|
|
stringpool.cc \
|
|
target-select.cc \
|
|
version.cc \
|
|
workqueue.cc
|
|
|
|
HFILES = \
|
|
archive.h \
|
|
common.h \
|
|
defstd.h \
|
|
dirsearch.h \
|
|
dynobj.h \
|
|
dwarf_reader.h \
|
|
ehframe.h \
|
|
errors.h \
|
|
fileread.h \
|
|
gold.h \
|
|
gold-threads.h \
|
|
layout.h \
|
|
merge.h \
|
|
object.h \
|
|
options.h \
|
|
output.h \
|
|
parameters.h \
|
|
readsyms.h \
|
|
reloc.h \
|
|
reloc-types.h \
|
|
script.h \
|
|
script-c.h \
|
|
stringpool.h \
|
|
symtab.h \
|
|
target.h \
|
|
target-reloc.h \
|
|
target-select.h \
|
|
tls.h \
|
|
workqueue.h
|
|
|
|
YFILES = \
|
|
yyscript.y
|
|
|
|
EXTRA_DIST = yyscript.c yyscript.h
|
|
|
|
TARGETSOURCES = \
|
|
i386.cc x86_64.cc
|
|
|
|
ALL_TARGETOBJS = \
|
|
i386.$(OBJEXT) x86_64.$(OBJEXT)
|
|
|
|
libgold_a_SOURCES = $(CCFILES) $(HFILES) $(YFILES)
|
|
|
|
sources_var = main.cc
|
|
deps_var = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(LIBINTL_DEP)
|
|
ldadd_var = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(LIBINTL) $(THREADSLIB)
|
|
|
|
ld_new_SOURCES = $(sources_var)
|
|
ld_new_DEPENDENCIES = $(deps_var) $(LIBOBJS)
|
|
ld_new_LDADD = $(ldadd_var) $(LIBOBJS)
|
|
|
|
EXTRA_ld_new_SOURCES = $(TARGETSOURCES)
|
|
|
|
# Use an explicit dependency for the bison generated header file.
|
|
script.$(OBJEXT): yyscript.h
|
|
|
|
# We have to build libgold.a before we run the tests.
|
|
check: libgold.a
|
|
|
|
.PHONY: install-exec-local
|
|
|
|
install-exec-local: ld-new$(EXEEXT)
|
|
$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(tooldir)/bin
|
|
n=`echo ld | sed '$(transform)'; \
|
|
$(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(bindir)/$${n}$(EXEEXT); \
|
|
if test "$(bindir)" != "$(tooldir)/bin"; then \
|
|
rm -f $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
|
|
ln $(DESTDIR)$(bindir)/$${n}$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT) >/dev/null 2>/dev/null \
|
|
|| $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
|
|
fi
|
|
|
|
# We want install to imply install-info as per GNU standards, despite
|
|
# the cygnus option.
|
|
install-data-local: install-info
|
|
|
|
POTFILES= $(CCFILES) $(HFILES) $(TARGETSOURCES)
|
|
|
|
po/POTFILES.in: @MAINT@ Makefile
|
|
for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
|
|
&& mv tmp $(srcdir)/po/POTFILES.in
|
|
|
|
# Bootstrap test support. We use ld-new to build ld1, then use ld1 to
|
|
# build ld2. ld1 and ld2 should be identical. ld-new need not be
|
|
# identical to ld1, since it was linked with the host linker.
|
|
|
|
if GCC
|
|
if NATIVE_LINKER
|
|
|
|
gcctestdir1/ld: ld-new
|
|
test -d gcctestdir1 || mkdir -p gcctestdir1
|
|
rm -f gcctestdir1/ld
|
|
(cd gcctestdir1 && $(LN_S) ../ld-new ld)
|
|
|
|
ld1_SOURCES = $(sources_var)
|
|
ld1_DEPENDENCIES = $(deps_var) gcctestdir1/ld
|
|
ld1_LDADD = $(ldadd_var)
|
|
ld1_LDFLAGS = -Bgcctestdir1/
|
|
|
|
gcctestdir2/ld: ld1
|
|
test -d gcctestdir2 || mkdir -p gcctestdir2
|
|
rm -f gcctestdir2/ld
|
|
(cd gcctestdir2 && $(LN_S) ../ld1 ld)
|
|
|
|
ld2_SOURCES = $(sources_var)
|
|
ld2_DEPENDENCIES = $(deps_var) gcctestdir2/ld
|
|
ld2_LDADD = $(ldadd_var)
|
|
ld2_LDFLAGS = -Bgcctestdir2/
|
|
|
|
check_PROGRAMS = ld1 ld2
|
|
|
|
bootstrap-test: ld2
|
|
rm -f $@
|
|
echo "#!/bin/sh" > $@
|
|
echo "cmp ld1 ld2" > $@
|
|
chmod +x $@
|
|
|
|
TESTS = bootstrap-test
|
|
|
|
endif
|
|
endif
|