aboutsummaryrefslogtreecommitdiff
path: root/gold/Makefile.am
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2006-08-04 23:10:59 +0000
committerIan Lance Taylor <iant@google.com>2006-08-04 23:10:59 +0000
commitbae7f79e03d6405f5ceec0e3e24671e6b30f29ed (patch)
tree4b9df8c6433411b45963dd75e3a6dcad9a22518e /gold/Makefile.am
parentc17d87de17351aed016a9d0b0712cdee4cca5f9e (diff)
downloadfsf-binutils-gdb-bae7f79e03d6405f5ceec0e3e24671e6b30f29ed.zip
fsf-binutils-gdb-bae7f79e03d6405f5ceec0e3e24671e6b30f29ed.tar.gz
fsf-binutils-gdb-bae7f79e03d6405f5ceec0e3e24671e6b30f29ed.tar.bz2
Initial CVS checkin of gold
Diffstat (limited to 'gold/Makefile.am')
-rw-r--r--gold/Makefile.am69
1 files changed, 69 insertions, 0 deletions
diff --git a/gold/Makefile.am b/gold/Makefile.am
new file mode 100644
index 0000000..acff0a4
--- /dev/null
+++ b/gold/Makefile.am
@@ -0,0 +1,69 @@
+# Process this file with automake to generate Makefile.in
+
+AUTOMAKE_OPTIONS =
+
+SUBDIRS = po
+
+tooldir = $(exec_prefix)/$(target_alias)
+
+ACLOCAL_AMFLAGS = -I ../bfd -I ../config
+
+AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CXXFLAGS)
+
+INCLUDES = -D_GNU_SOURCE \
+ -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../elfcpp \
+ -DLOCALEDIR="\"$(datadir)/locale\"" \
+ @INCINTL@
+
+noinst_PROGRAMS = ld-new
+
+CFILES = \
+ dirsearch.cc \
+ fileread.cc \
+ gold.cc \
+ gold-threads.cc \
+ object.cc \
+ options.cc \
+ readsyms.cc \
+ workqueue.cc
+
+HFILES = \
+ dirsearch.h \
+ fileread.h \
+ gold.h \
+ gold-threads.h \
+ object.h \
+ options.h \
+ readsyms.h \
+ symtab.h \
+ target.h \
+ targetsize.h \
+ workqueue.h
+
+OFILES = gold.o options.o
+
+POTFILES= $(CFILES) $(HFILES)
+
+po/POTFILES.in: @MAINT@ Makefile
+ for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
+ && mv tmp $(srcdir)/po/POTFILES.in
+
+ld_new_SOURCES = $(CFILES) $(HFILES)
+ld_new_DEPENDENCIES = $(LIBINTL_DEP)
+ld_new_LDADD = $(LIBINTL)
+
+.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