Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: gold/Makefile.am

Issue 10252012: [MIPS] Initial checkin for MIPS changes for GOLD. (Closed)
Patch Set: Updated MIPS code w/ SH_RELA. Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | gold/Makefile.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Process this file with automake to generate Makefile.in 1 # Process this file with automake to generate Makefile.in
2 2
3 AUTOMAKE_OPTIONS = foreign 3 AUTOMAKE_OPTIONS = foreign
4 4
5 SUBDIRS = po testsuite 5 SUBDIRS = po testsuite
6 6
7 tooldir = $(exec_prefix)/$(target_alias) 7 tooldir = $(exec_prefix)/$(target_alias)
8 8
9 ACLOCAL_AMFLAGS = -I ../bfd -I ../config 9 ACLOCAL_AMFLAGS = -I ../bfd -I ../config
10 10
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 script-sections.h \ 134 script-sections.h \
135 script.h \ 135 script.h \
136 stringpool.h \ 136 stringpool.h \
137 symtab.h \ 137 symtab.h \
138 target.h \ 138 target.h \
139 target-reloc.h \ 139 target-reloc.h \
140 target-select.h \ 140 target-select.h \
141 timer.h \ 141 timer.h \
142 tls.h \ 142 tls.h \
143 token.h \ 143 token.h \
144 utils.h \
144 workqueue.h \ 145 workqueue.h \
145 workqueue-internal.h 146 workqueue-internal.h
146 147
147 if NACLSRPC 148 if NACLSRPC
148 HFILES = $(HFILES) nacl_file.h 149 HFILES = $(HFILES) nacl_file.h
149 endif 150 endif
150 151
151 YFILES = \ 152 YFILES = \
152 yyscript.y 153 yyscript.y
153 154
154 DEFFILES = arm-reloc.def 155 DEFFILES = arm-reloc.def
155 156
156 EXTRA_DIST = yyscript.c yyscript.h 157 EXTRA_DIST = yyscript.c yyscript.h
157 158
158 TARGETSOURCES = \ 159 TARGETSOURCES = \
159 » i386.cc x86_64.cc sparc.cc powerpc.cc arm.cc arm-reloc-property.cc 160 » i386.cc x86_64.cc sparc.cc powerpc.cc arm.cc arm-reloc-property.cc \
161 » mips.cc
160 162
161 ALL_TARGETOBJS = \ 163 ALL_TARGETOBJS = \
162 i386.$(OBJEXT) x86_64.$(OBJEXT) sparc.$(OBJEXT) powerpc.$(OBJEXT) \ 164 i386.$(OBJEXT) x86_64.$(OBJEXT) sparc.$(OBJEXT) powerpc.$(OBJEXT) \
163 » arm.$(OBJEXT) arm-reloc-property.$(OBJEXT) 165 » arm.$(OBJEXT) arm-reloc-property.$(OBJEXT) mips.$(OBJEXT)
164 166
165 libgold_a_SOURCES = $(CCFILES) $(HFILES) $(YFILES) $(DEFFILES) 167 libgold_a_SOURCES = $(CCFILES) $(HFILES) $(YFILES) $(DEFFILES)
166 libgold_a_LIBADD = $(LIBOBJS) 168 libgold_a_LIBADD = $(LIBOBJS)
167 169
168 sources_var = main.cc 170 sources_var = main.cc
169 deps_var = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(LIBINTL_DEP) 171 deps_var = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(LIBINTL_DEP)
170 ldadd_var = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(GOLD_LDADD) $(LIBINTL) \ 172 ldadd_var = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(GOLD_LDADD) $(LIBINTL) \
171 $(NACLSRPCLIB) $(THREADSLIB) $(LIBDL) 173 $(NACLSRPCLIB) $(THREADSLIB) $(LIBDL)
172 ldflags_var = $(GOLD_LDFLAGS) 174 ldflags_var = $(GOLD_LDFLAGS)
173 175
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 rm -f $@ 285 rm -f $@
284 echo "#!/bin/sh" > $@ 286 echo "#!/bin/sh" > $@
285 echo "cmp ld1-r ld2-r" > $@ 287 echo "cmp ld1-r ld2-r" > $@
286 chmod +x $@ 288 chmod +x $@
287 289
288 check_PROGRAMS = ld1 ld2 ld1-r ld2-r 290 check_PROGRAMS = ld1 ld2 ld1-r ld2-r
289 TESTS = bootstrap-test bootstrap-test-r 291 TESTS = bootstrap-test bootstrap-test-r
290 292
291 endif 293 endif
292 endif 294 endif
OLDNEW
« no previous file with comments | « no previous file | gold/Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698