daily update
[binutils-gdb.git] / gold / Makefile.am
index a91a1c80cc85d560e21234a2736ab013227d4d56..ea43458453926eb0a31ac03a84b7d855a09240d0 100644 (file)
@@ -8,7 +8,8 @@ tooldir = $(exec_prefix)/$(target_alias)
 
 ACLOCAL_AMFLAGS = -I ../bfd -I ../config
 
-AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CXXFLAGS)
+AM_CFLAGS = $(WARN_CFLAGS) $(LFS_CFLAGS)
+AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CFLAGS)
 
 INCLUDES = \
        -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../elfcpp \
@@ -29,13 +30,16 @@ noinst_LIBRARIES = libgold.a
 
 CCFILES = \
        archive.cc \
+       binary.cc \
        common.cc \
+       compressed_output.cc \
        defstd.cc \
        dirsearch.cc \
        dynobj.cc \
        dwarf_reader.cc \
        ehframe.cc \
        errors.cc \
+       expression.cc \
        fileread.cc \
        gold.cc \
        gold-threads.cc \
@@ -48,16 +52,20 @@ CCFILES = \
        readsyms.cc \
        reloc.cc \
        resolve.cc \
+       script-sections.cc \
        script.cc \
-       symtab.cc \
        stringpool.cc \
+       symtab.cc \
        target-select.cc \
        version.cc \
-       workqueue.cc
+       workqueue.cc \
+       workqueue-threads.cc
 
 HFILES = \
        archive.h \
+       binary.h \
        common.h \
+       compressed_output.h \
        defstd.h \
        dirsearch.h \
        dynobj.h \
@@ -76,15 +84,18 @@ HFILES = \
        readsyms.h \
        reloc.h \
        reloc-types.h \
-       script.h \
        script-c.h \
+       script-sections.h \
+       script.h \
        stringpool.h \
        symtab.h \
        target.h \
        target-reloc.h \
        target-select.h \
        tls.h \
-       workqueue.h
+       token.h \
+       workqueue.h \
+       workqueue-internal.h
 
 YFILES = \
        yyscript.y
@@ -110,6 +121,8 @@ ld_new_LDADD = $(ldadd_var) $(LIBOBJS)
 EXTRA_ld_new_SOURCES = $(TARGETSOURCES)
 
 # Use an explicit dependency for the bison generated header file.
+expression.$(OBJEXT): yyscript.h
+script-sections.$(OBJEXT): yyscript.h
 script.$(OBJEXT): yyscript.h
 
 # We have to build libgold.a before we run the tests.
@@ -119,7 +132,7 @@ check: libgold.a
 
 install-exec-local: ld-new$(EXEEXT)
        $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(tooldir)/bin
-       n=`echo ld | sed '$(transform)'; \
+       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); \
@@ -164,15 +177,41 @@ 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
+libgold-1-r.o: gcctestdir1/ld libgold.a
+       gcctestdir1/ld -o $@ -r --whole-archive libgold.a
+
+ld1_r_SOURCES = $(sources_var)
+ld1_r_DEPENDENCIES = libgold-1-r.o $(deps_var) gcctestdir1/ld
+ld1_r_LDADD = libgold-1-r.o $(ldadd_var)
+ld1_r_LDFLAGS = -Bgcctestdir1/
+
+gcctestdir2-r/ld: ld1-r
+       test -d gcctestdir2-r || mkdir -p gcctestdir2-r
+       rm -f gcctestdir2-r/ld
+       (cd gcctestdir2-r && $(LN_S) ../ld1-r ld)
+
+libgold-2-r.o: gcctestdir2-r/ld libgold.a
+       gcctestdir2-r/ld -o $@ -r --whole-archive libgold.a
+
+ld2_r_SOURCES = $(sources_var)
+ld2_r_DEPENDENCIES = libgold-2-r.o $(deps_var) gcctestdir2-r/ld
+ld2_r_LDADD = libgold-2-r.o $(ldadd_var)
+ld2_r_LDFLAGS = -Bgcctestdir2-r/
+
+bootstrap-test-r: ld2-r
+       rm -f $@
+       echo "#!/bin/sh" > $@
+       echo "cmp ld1-r ld2-r" > $@
+       chmod +x $@
+
+check_PROGRAMS = ld1 ld2 ld1-r ld2-r
+TESTS = bootstrap-test bootstrap-test-r
 
 endif
 endif