OpenCores
URL https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk

Subversion Repositories open8_urisc

[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [binutils/] [Makefile.am] - Blame information for rev 161

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 15 khays
## Process this file with automake to generate Makefile.in
2
 
3
AUTOMAKE_OPTIONS = dejagnu no-dist foreign
4
ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
5
 
6
SUBDIRS = doc po
7
 
8
tooldir = $(exec_prefix)/$(target_alias)
9
 
10
## These aren't set by automake, because they appear in
11
## bfd/acinclude.m4, which is included by binutils/acinclude.m4, and
12
## thus is not seen by automake.
13
CC_FOR_BUILD = @CC_FOR_BUILD@
14
EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
15
 
16
YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
17
YFLAGS = -d
18
LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
19
 
20
# Automake 1.10+ disables lex and yacc output file regeneration if
21
# maintainer mode is disabled.  Avoid this.
22
am__skiplex =
23
am__skipyacc =
24
 
25
WARN_CFLAGS = @WARN_CFLAGS@
26
NO_WERROR = @NO_WERROR@
27
AM_CFLAGS = $(WARN_CFLAGS)
28
LIBICONV = @LIBICONV@
29
 
30
# these two are almost the same program
31
AR_PROG=ar
32
RANLIB_PROG=ranlib
33
 
34
# objcopy and strip should be the same program
35
OBJCOPY_PROG=objcopy
36
STRIP_PROG=strip-new
37
 
38
STRINGS_PROG=strings
39
 
40
READELF_PROG=readelf
41
 
42
ELFEDIT_PROG=elfedit
43
 
44
# These should all be the same program too.
45
SIZE_PROG=size
46
NM_PROG=nm-new
47
OBJDUMP_PROG=objdump
48
 
49
# This is the demangler, as a standalone program.
50
# Note: This one is used as the installed name too, unlike the above.
51
DEMANGLER_PROG=cxxfilt
52
 
53
ADDR2LINE_PROG=addr2line
54
 
55
NLMCONV_PROG=nlmconv
56
DLLTOOL_PROG=dlltool
57
WINDRES_PROG=windres
58
WINDMC_PROG=windmc
59
DLLWRAP_PROG=dllwrap
60
 
61
SRCONV_PROG=srconv$(EXEEXT) sysdump$(EXEEXT) coffdump$(EXEEXT)
62
 
63
bin_PROGRAMS = $(SIZE_PROG) $(OBJDUMP_PROG) $(AR_PROG) $(STRINGS_PROG) $(RANLIB_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@ @BUILD_WINDRES@ @BUILD_WINDMC@ $(ADDR2LINE_PROG) $(READELF_PROG) $(ELFEDIT_PROG) @BUILD_DLLWRAP@
64
 
65
bin_SCRIPTS = @BUILD_INSTALL_MISC@
66
EXTRA_SCRIPTS = embedspu
67
 
68
## We need a special rule to install the programs which are built with
69
## -new, and to rename cxxfilt to c++filt.
70
RENAMED_PROGS = $(NM_PROG) $(STRIP_PROG) $(DEMANGLER_PROG)
71
noinst_PROGRAMS = $(RENAMED_PROGS) @BUILD_MISC@
72
 
73
EXTRA_PROGRAMS = $(NLMCONV_PROG) srconv sysdump coffdump $(DLLTOOL_PROG) $(WINDRES_PROG) $(WINDMC_PROG) $(DLLWRAP_PROG)
74
 
75
# Stuff that goes in tooldir/ if appropriate.
76
TOOL_PROGS = nm-new strip-new ar ranlib dlltool objdump objcopy
77
 
78
BASEDIR = $(srcdir)/..
79
BFDDIR = $(BASEDIR)/bfd
80
INCDIR  = $(BASEDIR)/include
81
 
82
AM_CPPFLAGS = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) \
83
         @HDEFINES@ \
84
         @INCINTL@ \
85
         -DLOCALEDIR="\"$(datadir)/locale\"" \
86
         -Dbin_dummy_emulation=$(EMULATION_VECTOR)
87
 
88
HFILES = \
89
        arsup.h binemul.h bucomm.h budbg.h \
90
        coffgrok.h debug.h dlltool.h dwarf.h elfcomm.h nlmconv.h \
91
        objdump.h sysdep.h unwind-ia64.h windres.h winduni.h windint.h \
92
        windmc.h
93
 
94
GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h rcparse.h mcparse.h
95
BUILT_SOURCES = $(GENERATED_HFILES)
96
 
97
CFILES = \
98
        addr2line.c ar.c arsup.c bin2c.c binemul.c bucomm.c \
99
        coffdump.c coffgrok.c cxxfilt.c \
100
        dwarf.c debug.c dlltool.c dllwrap.c \
101
        elfcomm.c emul_aix.c emul_vanilla.c filemode.c \
102
        ieee.c is-ranlib.c is-strip.c maybe-ranlib.c maybe-strip.c \
103
        nlmconv.c nm.c not-ranlib.c not-strip.c \
104
        objcopy.c objdump.c prdbg.c \
105
        od-xcoff.c \
106
        rclex.c rdcoff.c rddbg.c readelf.c rename.c \
107
        resbin.c rescoff.c resrc.c resres.c \
108
        size.c srconv.c stabs.c strings.c sysdump.c \
109
        unwind-ia64.c elfedit.c version.c \
110
        windres.c winduni.c wrstabs.c \
111
        windmc.c mclex.c
112
 
113
GENERATED_CFILES = \
114
        arparse.c arlex.c sysroff.c sysinfo.c syslex.c \
115
        defparse.c deflex.c nlmheader.c rcparse.c mcparse.c
116
 
117
DEBUG_SRCS = rddbg.c debug.c stabs.c ieee.c rdcoff.c
118
WRITE_DEBUG_SRCS = $(DEBUG_SRCS) wrstabs.c
119
 
120
# Extra object files for objdump
121
OBJDUMP_PRIVATE_OFILES = @OBJDUMP_PRIVATE_OFILES@
122
 
123
# Code shared by all the binutils.
124
BULIBS = bucomm.c version.c filemode.c
125
 
126
# Code shared by the ELF related programs.
127
ELFLIBS = elfcomm.c
128
 
129
BFDLIB = ../bfd/libbfd.la
130
 
131
OPCODES = ../opcodes/libopcodes.la
132
 
133
LIBIBERTY = ../libiberty/libiberty.a
134
 
135
POTFILES = $(CFILES) $(DEBUG_SRCS) $(HFILES)
136
po/POTFILES.in: @MAINT@ Makefile
137
        for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
138
          && mv tmp $(srcdir)/po/POTFILES.in
139
 
140
EXPECT = expect
141
RUNTEST = runtest
142
 
143
CC_FOR_TARGET = ` \
144
  if [ -f $$r/../gcc/xgcc ] ; then \
145
    if [ -f $$r/../newlib/Makefile ] ; then \
146
      echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
147
    else \
148
      echo $$r/../gcc/xgcc -B$$r/../gcc/; \
149
    fi; \
150
  else \
151
    if [ "@host@" = "@target@" ] ; then \
152
      echo $(CC); \
153
    else \
154
      echo gcc | sed '$(transform)'; \
155
    fi; \
156
  fi`
157
 
158
check-DEJAGNU: site.exp
159
        srcdir=`cd $(srcdir) && pwd`; export srcdir; \
160
        r=`pwd`; export r; \
161
        EXPECT=$(EXPECT); export EXPECT; \
162
        runtest=$(RUNTEST); \
163
        if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
164
          CC_FOR_TARGET="$(CC_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS)" \
165
                $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
166
                        $(RUNTESTFLAGS); \
167
        else echo "WARNING: could not find \`runtest'" 1>&2; :;\
168
        fi
169
 
170
installcheck-local:
171
        /bin/sh $(srcdir)/sanity.sh $(bindir)
172
 
173
# There's no global DEPENDENCIES.  So, we must explicitly list everything
174
# which depends on libintl, since we don't know whether LIBINTL_DEP will be
175
# non-empty until configure time.  Ugh!
176
size_DEPENDENCIES =      $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
177
objdump_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB) $(OPCODES) $(OBJDUMP_PRIVATE_OFILES)
178
nm_new_DEPENDENCIES =    $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
179
ar_DEPENDENCIES =        $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
180
strings_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
181
strip_new_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
182
ranlib_DEPENDENCIES =    $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
183
cxxfilt_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
184
objcopy_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
185
nlmconv_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
186
srconv_DEPENDENCIES =    $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
187
sysdump_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
188
coffdump_DEPENDENCIES =  $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
189
dlltool_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
190
windres_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
191
windmc_DEPENDENCIES =    $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
192
addr2line_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
193
readelf_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY)
194
elfedit_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY)
195
dllwrap_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY)
196
 
197
LDADD = $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
198
 
199
size_SOURCES = size.c $(BULIBS)
200
 
201
objcopy_SOURCES = objcopy.c not-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
202
 
203
strings_SOURCES = strings.c $(BULIBS)
204
 
205
readelf_SOURCES = readelf.c version.c unwind-ia64.c dwarf.c $(ELFLIBS)
206
readelf_LDADD   = $(LIBINTL) $(LIBIBERTY)
207
 
208
elfedit_SOURCES = elfedit.c version.c $(ELFLIBS)
209
elfedit_LDADD = $(LIBINTL) $(LIBIBERTY)
210
 
211
strip_new_SOURCES = objcopy.c is-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
212
 
213
nm_new_SOURCES = nm.c $(BULIBS)
214
 
215
objdump_SOURCES = objdump.c dwarf.c prdbg.c $(DEBUG_SRCS) $(BULIBS) $(ELFLIBS)
216
EXTRA_objdump_SOURCES = od-xcoff.c
217
objdump_LDADD = $(OBJDUMP_PRIVATE_OFILES) $(OPCODES) $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
218
 
219
objdump.@OBJEXT@:objdump.c
220
if am__fastdepCC
221
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
222
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
223
else
224
if AMDEP
225
        source='objdump.c' object='$@' libtool=no @AMDEPBACKSLASH@
226
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
227
endif
228
        $(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
229
endif
230
 
231
cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
232
 
233
ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c binemul.c \
234
        emul_$(EMULATION).c $(BULIBS)
235
EXTRA_ar_SOURCES = $(CFILES)
236
ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
237
 
238
ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c \
239
        binemul.c emul_$(EMULATION).c $(BULIBS)
240
ranlib_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
241
 
242
addr2line_SOURCES = addr2line.c $(BULIBS)
243
 
244
# The following is commented out for the conversion to automake.
245
# This rule creates a single binary that switches between ar and ranlib
246
# by looking at argv[0].  Use this kludge to save some disk space.
247
# However, you have to install things by hand.
248
# (That is after 'make install', replace the installed ranlib by a link to ar.)
249
# Alternatively, you can install ranlib.sh as ranlib.
250
# ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o
251
#       $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
252
#       -rm -f $(RANLIB_PROG)
253
#       -ln $(AR_PROG) $(RANLIB_PROG)
254
#
255
# objcopy and strip in one binary that uses argv[0] to decide its action.
256
#
257
#objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o
258
#       $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
259
#       -rm -f $(STRIP_PROG)
260
#       -ln $(OBJCOPY_PROG) $(STRIP_PROG)
261
 
262
sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
263
        ./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
264
        ./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
265
        ./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
266
 
267
sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
268
        ./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
269
 
270
sysinfo$(EXEEXT_FOR_BUILD): sysinfo.@OBJEXT@ syslex.@OBJEXT@
271
        $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ sysinfo.@OBJEXT@ syslex.@OBJEXT@
272
 
273
syslex.@OBJEXT@: syslex.c sysinfo.h config.h
274
        if [ -r syslex.c ]; then \
275
          $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(NO_WERROR) syslex.c ; \
276
        else \
277
          $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/syslex.c ;\
278
        fi
279
 
280
sysinfo.@OBJEXT@: sysinfo.c
281
        if [ -r sysinfo.c ]; then \
282
          $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(NO_WERROR) sysinfo.c ; \
283
        else \
284
          $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/sysinfo.c ; \
285
        fi
286
 
287
bin2c$(EXEEXT_FOR_BUILD): bin2c.c
288
        $(CC_FOR_BUILD) -o $@ $(AM_CPPFLAGS) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(srcdir)/bin2c.c
289
 
290
embedspu: embedspu.sh Makefile
291 161 khays
        awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@
292 15 khays
        chmod a+x $@
293
 
294
# We need these for parallel make.
295
sysinfo.h: sysinfo.c
296
 
297
# Disable -Werror, if it has been enabled, since old versions of bison/
298
# yacc will produce working code which contain compile time warnings.
299
arparse.@OBJEXT@: arparse.c
300
if am__fastdepCC
301
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
302
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
303
else
304
if AMDEP
305
        source='arparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
306
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
307
endif
308
        $(COMPILE) -c `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
309
endif
310
 
311
arlex.@OBJEXT@: arlex.c
312
if am__fastdepCC
313
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
314
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
315
else
316
if AMDEP
317
        source='arlex.c' object='$@' libtool=no @AMDEPBACKSLASH@
318
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
319
endif
320
        $(COMPILE) -c `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
321
endif
322
 
323
sysroff.@OBJEXT@: sysroff.c
324
if am__fastdepCC
325
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
326
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
327
else
328
if AMDEP
329
        source='sysroff.c' object='$@' libtool=no @AMDEPBACKSLASH@
330
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
331
endif
332
        $(COMPILE) -c `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
333
endif
334
 
335
defparse.@OBJEXT@: defparse.c
336
if am__fastdepCC
337
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
338
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
339
else
340
if AMDEP
341
        source='defparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
342
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
343
endif
344
        $(COMPILE) -c `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
345
endif
346
 
347
deflex.@OBJEXT@: deflex.c
348
if am__fastdepCC
349
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
350
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
351
else
352
if AMDEP
353
        source='deflex.c' object='$@' libtool=no @AMDEPBACKSLASH@
354
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
355
endif
356
        $(COMPILE) -c `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
357
endif
358
 
359
nlmheader.@OBJEXT@: nlmheader.c
360
if am__fastdepCC
361
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f nlmheader.c || echo $(srcdir)/`nlmheader.c $(NO_WERROR)
362
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
363
else
364
if AMDEP
365
        source='nlmheader.c' object='$@' libtool=no @AMDEPBACKSLASH@
366
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
367
endif
368
        $(COMPILE) -c `test -f nlmheader.c || echo $(srcdir)/`nlmheader.c $(NO_WERROR)
369
endif
370
 
371
rcparse.@OBJEXT@: rcparse.c
372
if am__fastdepCC
373
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
374
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
375
else
376
if AMDEP
377
        source='rcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
378
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
379
endif
380
        $(COMPILE) -c `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
381
endif
382
 
383
mcparse.@OBJEXT@: mcparse.c
384
if am__fastdepCC
385
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
386
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
387
else
388
if AMDEP
389
        source='mcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
390
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
391
endif
392
        $(COMPILE) -c `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
393
endif
394
 
395
rclex.@OBJEXT@: rclex.c
396
if am__fastdepCC
397
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
398
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
399
else
400
if AMDEP
401
        source='rclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
402
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
403
endif
404
        $(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
405
endif
406
 
407
mclex.@OBJEXT@: mclex.c
408
if am__fastdepCC
409
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
410
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
411
else
412
if AMDEP
413
        source='mclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
414
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
415
endif
416
        $(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
417
endif
418
 
419
srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
420
srconv.@OBJEXT@: sysroff.c
421
 
422
dlltool_SOURCES = dlltool.c defparse.y deflex.l $(BULIBS)
423
dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
424
 
425
dlltool.@OBJEXT@:
426
if am__fastdepCC
427
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
428
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
429
else
430
if AMDEP
431
        source='dlltool.c' object='$@' libtool=no @AMDEPBACKSLASH@
432
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
433
endif
434
        $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
435
endif
436
 
437
rescoff.@OBJEXT@:
438
if am__fastdepCC
439
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
440
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
441
else
442
if AMDEP
443
        source='rescoff.c' object='$@' libtool=no @AMDEPBACKSLASH@
444
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
445
endif
446
        $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
447
endif
448
 
449
coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
450
 
451
sysdump_SOURCES = sysdump.c $(BULIBS)
452
sysdump.@OBJEXT@: sysroff.c
453
 
454
# coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
455
# scripts, since they are only included conditionally.
456
nlmconv.@OBJEXT@: nlmconv.c
457
if am__fastdepCC
458
        ldname=`echo ld | sed '$(transform)'`; \
459
        $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ \
460
          -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
461
        mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
462
else
463
if AMDEP
464
        source='nlmconv.c' object='$@' libtool=no @AMDEPBACKSLASH@
465
        DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
466
endif
467
        ldname=`echo ld | sed '$(transform)'`; \
468
        $(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
469
endif
470
 
471
nlmconv_SOURCES = nlmconv.c nlmheader.y $(BULIBS)
472
 
473
windres_SOURCES = windres.c resrc.c rescoff.c resbin.c rcparse.y rclex.c \
474
        winduni.c resres.c $(BULIBS)
475
windres_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL) $(LIBICONV)
476
 
477
windmc_SOURCES = windmc.c mcparse.y mclex.c \
478
        winduni.c $(BULIBS)
479
windmc_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL) $(LIBICONV)
480
 
481
dllwrap_SOURCES = dllwrap.c version.c
482
dllwrap_LDADD = $(LIBIBERTY) $(LIBINTL)
483
 
484
 
485
EXTRA_DIST = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
486
        syslex.c deflex.c defparse.h defparse.c rcparse.h rcparse.c \
487
        mcparse.h mcparse.c embedspu.sh
488
 
489
diststuff: $(EXTRA_DIST) info
490
all: info
491
 
492
# We extract version from bfd/configure.in, make sure to rerun configure
493
# when BFD's version changes.
494
CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in
495
 
496
DISTCLEANFILES = sysroff.c sysroff.h site.exp site.bak embedspu
497
 
498
MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) bin2c$(EXEEXT_FOR_BUILD) \
499
  binutils.log binutils.sum abcdefgh*
500
mostlyclean-local:
501
        -rm -rf tmpdir
502
 
503
.PHONY: install-exec-local
504
 
505
install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
506
        @list='$(RENAMED_PROGS)'; for p in $$list; do \
507
          if test -f $$p$(EXEEXT); then \
508
            echo " $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p$(EXEEXT) $(bindir)/`echo $$p|sed -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
509
            $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p$(EXEEXT) $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
510
          else :; fi; \
511
        done
512
        $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
513
        for i in $(TOOL_PROGS); do \
514
          if [ -f $$i$(EXEEXT) ]; then \
515
            j=`echo $$i | sed -e 's/-new//'`; \
516
            k=`echo $$j | sed '$(transform)'`; \
517
            if [ "$(bindir)/$$k" != "$(tooldir)/bin/$$j" ]; then \
518
              rm -f $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
519
              ln $(DESTDIR)$(bindir)/$$k$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT) >/dev/null 2>/dev/null \
520
                || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
521
            fi; \
522
          else true; \
523
          fi; \
524
        done

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.