* Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
[binutils.git] / gold / Makefile.am
blobe0665e04f81d7bedb9be4f371fd55e2dd820068b
1 # Process this file with automake to generate Makefile.in
3 AUTOMAKE_OPTIONS = foreign
5 SUBDIRS = po testsuite
7 tooldir = $(exec_prefix)/$(target_alias)
9 ACLOCAL_AMFLAGS = -I ../bfd -I ../config
11 AM_CFLAGS = $(WARN_CFLAGS) $(LFS_CFLAGS) $(RANDOM_SEED_CFLAGS)
12 AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CFLAGS) $(RANDOM_SEED_CFLAGS)
14 AM_CPPFLAGS = \
15         -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../elfcpp \
16         -DLOCALEDIR="\"$(datadir)/locale\"" \
17         -DBINDIR="\"$(bindir)\"" -DTOOLBINDIR="\"$(tooldir)/bin\"" \
18         @INCINTL@
20 LIBIBERTY = ../libiberty/libiberty.a
22 if PLUGINS
23 LIBDL = -ldl
24 endif
26 if THREADS
27 THREADSLIB = -lpthread
28 endif
30 AM_YFLAGS = -d
32 # Automake 1.10+ disables lex and yacc output file regeneration if
33 # maintainer mode is disabled.  Avoid this.
34 am__skiplex =
35 am__skipyacc =
37 noinst_PROGRAMS = ld-new incremental-dump
38 noinst_LIBRARIES = libgold.a
40 CCFILES = \
41         archive.cc \
42         attributes.cc \
43         binary.cc \
44         common.cc \
45         compressed_output.cc \
46         copy-relocs.cc \
47         cref.cc \
48         defstd.cc \
49         descriptors.cc \
50         dirsearch.cc \
51         dynobj.cc \
52         dwarf_reader.cc \
53         ehframe.cc \
54         errors.cc \
55         expression.cc \
56         fileread.cc \
57         gc.cc \
58         gold.cc \
59         gold-threads.cc \
60         icf.cc \
61         incremental.cc \
62         int_encoding.cc \
63         layout.cc \
64         mapfile.cc \
65         merge.cc \
66         object.cc \
67         options.cc \
68         output.cc \
69         parameters.cc \
70         plugin.cc \
71         readsyms.cc \
72         reduced_debug_output.cc \
73         reloc.cc \
74         resolve.cc \
75         script-sections.cc \
76         script.cc \
77         stringpool.cc \
78         symtab.cc \
79         target.cc \
80         target-select.cc \
81         timer.cc \
82         version.cc \
83         workqueue.cc \
84         workqueue-threads.cc
86 HFILES = \
87         arm-reloc-property.h \
88         archive.h \
89         attributes.h \
90         binary.h \
91         common.h \
92         compressed_output.h \
93         copy-relocs.h \
94         cref.h \
95         defstd.h \
96         dirsearch.h \
97         descriptors.h \
98         dynobj.h \
99         dwarf_reader.h \
100         ehframe.h \
101         errors.h \
102         fileread.h \
103         freebsd.h \
104         gc.h \
105         gold.h \
106         gold-threads.h \
107         icf.h \
108         int_encoding.h \
109         layout.h \
110         mapfile.h \
111         merge.h \
112         object.h \
113         options.h \
114         output.h \
115         parameters.h \
116         plugin.h \
117         readsyms.h \
118         reduced_debug_output.h \
119         reloc.h \
120         reloc-types.h \
121         script-c.h \
122         script-sections.h \
123         script.h \
124         stringpool.h \
125         symtab.h \
126         target.h \
127         target-reloc.h \
128         target-select.h \
129         timer.h \
130         tls.h \
131         token.h \
132         workqueue.h \
133         workqueue-internal.h
135 YFILES = \
136         yyscript.y
138 DEFFILES = arm-reloc.def
140 EXTRA_DIST = yyscript.c yyscript.h
142 TARGETSOURCES = \
143         i386.cc x86_64.cc sparc.cc powerpc.cc arm.cc arm-reloc-property.cc
145 ALL_TARGETOBJS = \
146         i386.$(OBJEXT) x86_64.$(OBJEXT) sparc.$(OBJEXT) powerpc.$(OBJEXT) \
147         arm.$(OBJEXT) arm-reloc-property.$(OBJEXT)
149 libgold_a_SOURCES = $(CCFILES) $(HFILES) $(YFILES) $(DEFFILES)
150 libgold_a_LIBADD = $(LIBOBJS)
152 sources_var = main.cc
153 deps_var = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(LIBINTL_DEP)
154 ldadd_var = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(LIBINTL) \
155          $(THREADSLIB) $(LIBDL)
157 ld_new_SOURCES = $(sources_var)
158 ld_new_DEPENDENCIES = $(deps_var)
159 ld_new_LDADD = $(ldadd_var)
161 EXTRA_ld_new_SOURCES = $(TARGETSOURCES)
163 incremental_dump_SOURCES = incremental-dump.cc
164 incremental_dump_DEPENDENCIES = $(TARGETOBJS) libgold.a $(LIBIBERTY) \
165         $(LIBINTL_DEP)
166 incremental_dump_LDADD = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(LIBINTL) \
167          $(THREADSLIB) $(LIBDL)
169 # Use an explicit dependency for the bison generated header file.
170 expression.$(OBJEXT): yyscript.h
171 script-sections.$(OBJEXT): yyscript.h
172 script.$(OBJEXT): yyscript.h
174 # We have to build libgold.a before we run the tests.
175 check: libgold.a
177 .PHONY: install-exec-local
179 install-exec-local: ld-new$(EXEEXT)
180         $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(tooldir)/bin
181         n=`echo ld | sed '$(transform)'`; \
182         $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(bindir)/$${n}$(EXEEXT); \
183         if test "$(bindir)" != "$(tooldir)/bin"; then \
184           rm -f $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
185           ln $(DESTDIR)$(bindir)/$${n}$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT) >/dev/null 2>/dev/null \
186             || $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
187         fi
189 # We want install to imply install-info as per GNU standards, despite
190 # the cygnus option.
191 install-data-local: install-info
193 POTFILES= $(CCFILES) $(HFILES) $(TARGETSOURCES)
195 po/POTFILES.in: @MAINT@ Makefile
196         for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
197           && mv tmp $(srcdir)/po/POTFILES.in
199 # Bootstrap test support.  We use ld-new to build ld1, then use ld1 to
200 # build ld2.  ld1 and ld2 should be identical.  ld-new need not be
201 # identical to ld1, since it was linked with the host linker.
203 if GCC
204 if NATIVE_LINKER
206 gcctestdir1/ld: ld-new
207         test -d gcctestdir1 || mkdir -p gcctestdir1
208         rm -f gcctestdir1/ld
209         (cd gcctestdir1 && $(LN_S) ../ld-new ld)
211 ld1_SOURCES = $(sources_var)
212 ld1_DEPENDENCIES = $(deps_var) gcctestdir1/ld
213 ld1_LDADD = $(ldadd_var)
214 ld1_LDFLAGS = -Bgcctestdir1/
216 gcctestdir2/ld: ld1
217         test -d gcctestdir2 || mkdir -p gcctestdir2
218         rm -f gcctestdir2/ld
219         (cd gcctestdir2 && $(LN_S) ../ld1 ld)
221 ld2_SOURCES = $(sources_var)
222 ld2_DEPENDENCIES = $(deps_var) gcctestdir2/ld
223 ld2_LDADD = $(ldadd_var)
224 ld2_LDFLAGS = -Bgcctestdir2/
226 bootstrap-test: ld2
227         rm -f $@
228         echo "#!/bin/sh" > $@
229         echo "cmp ld1 ld2" > $@
230         chmod +x $@
232 libgold-1-r.o: gcctestdir1/ld libgold.a
233         gcctestdir1/ld -o $@ -r --whole-archive libgold.a
235 ld1_r_SOURCES = $(sources_var)
236 ld1_r_DEPENDENCIES = libgold-1-r.o $(deps_var) gcctestdir1/ld
237 ld1_r_LDADD = libgold-1-r.o $(ldadd_var)
238 ld1_r_LDFLAGS = -Bgcctestdir1/
240 gcctestdir2-r/ld: ld1-r
241         test -d gcctestdir2-r || mkdir -p gcctestdir2-r
242         rm -f gcctestdir2-r/ld
243         (cd gcctestdir2-r && $(LN_S) ../ld1-r ld)
245 libgold-2-r.o: gcctestdir2-r/ld libgold.a
246         gcctestdir2-r/ld -o $@ -r --whole-archive libgold.a
248 ld2_r_SOURCES = $(sources_var)
249 ld2_r_DEPENDENCIES = libgold-2-r.o $(deps_var) gcctestdir2-r/ld
250 ld2_r_LDADD = libgold-2-r.o $(ldadd_var)
251 ld2_r_LDFLAGS = -Bgcctestdir2-r/
253 bootstrap-test-r: ld2-r
254         rm -f $@
255         echo "#!/bin/sh" > $@
256         echo "cmp ld1-r ld2-r" > $@
257         chmod +x $@
259 check_PROGRAMS = ld1 ld2 ld1-r ld2-r
260 TESTS = bootstrap-test bootstrap-test-r
262 endif
263 endif