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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1ksim/] [testsuite/] [test-code/] [Makefile.in] - Blame information for rev 90

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

Line No. Rev Author Line
1 82 jeremybenn
# Makefile.in generated by automake 1.11.1 from Makefile.am.
2
# @configure_input@
3
 
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6
# Inc.
7
# This Makefile.in is free software; the Free Software Foundation
8
# gives unlimited permission to copy and/or distribute it,
9
# with or without modifications, as long as this notice is preserved.
10
 
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14
# PARTICULAR PURPOSE.
15
 
16
@SET_MAKE@
17
 
18
# Makefile.am for or1ksim testsuite test-code
19
 
20
# Copyright (C) Embecosm Limited, 2010
21
 
22
# Contributor Jeremy Bennett 
23
 
24
# This file is part of OpenRISC 1000 Architectural Simulator.
25
 
26
# This program is free software; you can redistribute it and/or modify it
27
# under the terms of the GNU General Public License as published by the Free
28
# Software Foundation; either version 3 of the License, or (at your option)
29
# any later version.
30
 
31
# This program is distributed in the hope that it will be useful, but WITHOUT
32
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
33
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
34
# more details.
35
 
36
# You should have received a copy of the GNU General Public License along
37
# with this program.  If not, see .  */
38
 
39
# -----------------------------------------------------------------------------
40
# This code is commented throughout for use with Doxygen.
41
# -----------------------------------------------------------------------------
42
 
43 90 jeremybenn
# Subdirs for each test program.
44 82 jeremybenn
VPATH = @srcdir@
45
pkgdatadir = $(datadir)/@PACKAGE@
46
pkgincludedir = $(includedir)/@PACKAGE@
47
pkglibdir = $(libdir)/@PACKAGE@
48
pkglibexecdir = $(libexecdir)/@PACKAGE@
49
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
50
install_sh_DATA = $(install_sh) -c -m 644
51
install_sh_PROGRAM = $(install_sh) -c
52
install_sh_SCRIPT = $(install_sh) -c
53
INSTALL_HEADER = $(INSTALL_DATA)
54
transform = $(program_transform_name)
55
NORMAL_INSTALL = :
56
PRE_INSTALL = :
57
POST_INSTALL = :
58
NORMAL_UNINSTALL = :
59
PRE_UNINSTALL = :
60
POST_UNINSTALL = :
61
build_triplet = @build@
62
host_triplet = @host@
63 90 jeremybenn
target_triplet = @target@
64
subdir = testsuite/test-code
65 82 jeremybenn
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
66
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
67
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
68
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
69
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
70
        $(top_srcdir)/configure.ac
71
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
72
        $(ACLOCAL_M4)
73 90 jeremybenn
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
74 82 jeremybenn
CONFIG_HEADER = $(top_builddir)/config.h
75
CONFIG_CLEAN_FILES =
76
CONFIG_CLEAN_VPATH_FILES =
77
SOURCES =
78
DIST_SOURCES =
79
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
80
        html-recursive info-recursive install-data-recursive \
81
        install-dvi-recursive install-exec-recursive \
82
        install-html-recursive install-info-recursive \
83
        install-pdf-recursive install-ps-recursive install-recursive \
84
        installcheck-recursive installdirs-recursive pdf-recursive \
85
        ps-recursive uninstall-recursive
86
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
87
  distclean-recursive maintainer-clean-recursive
88
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
89
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
90
        distdir
91
ETAGS = etags
92
CTAGS = ctags
93
DIST_SUBDIRS = $(SUBDIRS)
94
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
95
am__relativize = \
96
  dir0=`pwd`; \
97
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
98
  sed_rest='s,^[^/]*/*,,'; \
99
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
100
  sed_butlast='s,/*[^/]*$$,,'; \
101
  while test -n "$$dir1"; do \
102
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
103
    if test "$$first" != "."; then \
104
      if test "$$first" = ".."; then \
105
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
106
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
107
      else \
108
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
109
        if test "$$first2" = "$$first"; then \
110
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
111
        else \
112
          dir2="../$$dir2"; \
113
        fi; \
114
        dir0="$$dir0"/"$$first"; \
115
      fi; \
116
    fi; \
117
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
118
  done; \
119
  reldir="$$dir2"
120
ACLOCAL = @ACLOCAL@
121
AMTAR = @AMTAR@
122
AR = @AR@
123 90 jeremybenn
ARFLAGS = @ARFLAGS@
124 82 jeremybenn
AUTOCONF = @AUTOCONF@
125
AUTOHEADER = @AUTOHEADER@
126
AUTOMAKE = @AUTOMAKE@
127
AWK = @AWK@
128 90 jeremybenn
BUILD_DIR = @BUILD_DIR@
129 82 jeremybenn
CC = @CC@
130
CCAS = @CCAS@
131
CCASDEPMODE = @CCASDEPMODE@
132
CCASFLAGS = @CCASFLAGS@
133
CCDEPMODE = @CCDEPMODE@
134
CFLAGS = @CFLAGS@
135
CPP = @CPP@
136
CPPFLAGS = @CPPFLAGS@
137 90 jeremybenn
CPU_ARCH = @CPU_ARCH@
138 82 jeremybenn
CYGPATH_W = @CYGPATH_W@
139 90 jeremybenn
DEBUGFLAGS = @DEBUGFLAGS@
140 82 jeremybenn
DEFS = @DEFS@
141
DEJAGNU = @DEJAGNU@
142
DEPDIR = @DEPDIR@
143
DSYMUTIL = @DSYMUTIL@
144
DUMPBIN = @DUMPBIN@
145
ECHO_C = @ECHO_C@
146
ECHO_N = @ECHO_N@
147
ECHO_T = @ECHO_T@
148
EGREP = @EGREP@
149
EXEEXT = @EXEEXT@
150
FGREP = @FGREP@
151
GREP = @GREP@
152 90 jeremybenn
INCLUDES = @INCLUDES@
153 82 jeremybenn
INSTALL = @INSTALL@
154
INSTALL_DATA = @INSTALL_DATA@
155
INSTALL_PROGRAM = @INSTALL_PROGRAM@
156
INSTALL_SCRIPT = @INSTALL_SCRIPT@
157
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
158
LD = @LD@
159
LDFLAGS = @LDFLAGS@
160
LIBOBJS = @LIBOBJS@
161
LIBS = @LIBS@
162
LIBTOOL = @LIBTOOL@
163
LIPO = @LIPO@
164
LN_S = @LN_S@
165 90 jeremybenn
LOCAL_CFLAGS = @LOCAL_CFLAGS@
166
LOCAL_DEFS = @LOCAL_DEFS@
167
LOCAL_LDFLAGS = @LOCAL_LDFLAGS@
168 82 jeremybenn
LTLIBOBJS = @LTLIBOBJS@
169
MAKEINFO = @MAKEINFO@
170 90 jeremybenn
MAKE_SHELL = @MAKE_SHELL@
171 82 jeremybenn
MKDIR_P = @MKDIR_P@
172
NM = @NM@
173
NMEDIT = @NMEDIT@
174
OBJDUMP = @OBJDUMP@
175
OBJEXT = @OBJEXT@
176
OTOOL = @OTOOL@
177
OTOOL64 = @OTOOL64@
178
PACKAGE = @PACKAGE@
179
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
180
PACKAGE_NAME = @PACKAGE_NAME@
181
PACKAGE_STRING = @PACKAGE_STRING@
182
PACKAGE_TARNAME = @PACKAGE_TARNAME@
183
PACKAGE_VERSION = @PACKAGE_VERSION@
184
PATH_SEPARATOR = @PATH_SEPARATOR@
185 90 jeremybenn
POW_LIB = @POW_LIB@
186 82 jeremybenn
RANLIB = @RANLIB@
187
SED = @SED@
188
SET_MAKE = @SET_MAKE@
189
SHELL = @SHELL@
190
STRIP = @STRIP@
191 90 jeremybenn
SUMVERSION = @SUMVERSION@
192
TERMCAP_LIB = @TERMCAP_LIB@
193 82 jeremybenn
VERSION = @VERSION@
194 90 jeremybenn
_GNU_SOURCE = @_GNU_SOURCE@
195 82 jeremybenn
abs_builddir = @abs_builddir@
196
abs_srcdir = @abs_srcdir@
197
abs_top_builddir = @abs_top_builddir@
198
abs_top_srcdir = @abs_top_srcdir@
199
ac_ct_CC = @ac_ct_CC@
200
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
201
am__include = @am__include@
202
am__leading_dot = @am__leading_dot@
203
am__quote = @am__quote@
204
am__tar = @am__tar@
205
am__untar = @am__untar@
206
bindir = @bindir@
207
build = @build@
208
build_alias = @build_alias@
209
build_cpu = @build_cpu@
210
build_os = @build_os@
211
build_vendor = @build_vendor@
212
builddir = @builddir@
213
datadir = @datadir@
214
datarootdir = @datarootdir@
215
docdir = @docdir@
216
dvidir = @dvidir@
217
exec_prefix = @exec_prefix@
218
host = @host@
219
host_alias = @host_alias@
220
host_cpu = @host_cpu@
221
host_os = @host_os@
222
host_vendor = @host_vendor@
223
htmldir = @htmldir@
224
includedir = @includedir@
225
infodir = @infodir@
226
install_sh = @install_sh@
227
libdir = @libdir@
228
libexecdir = @libexecdir@
229
localedir = @localedir@
230
localstatedir = @localstatedir@
231
lt_ECHO = @lt_ECHO@
232
mandir = @mandir@
233
mkdir_p = @mkdir_p@
234
oldincludedir = @oldincludedir@
235
pdfdir = @pdfdir@
236
prefix = @prefix@
237
program_transform_name = @program_transform_name@
238
psdir = @psdir@
239
sbindir = @sbindir@
240
sharedstatedir = @sharedstatedir@
241
srcdir = @srcdir@
242 90 jeremybenn
subdirs = @subdirs@
243 82 jeremybenn
sysconfdir = @sysconfdir@
244 90 jeremybenn
target = @target@
245 82 jeremybenn
target_alias = @target_alias@
246 90 jeremybenn
target_cpu = @target_cpu@
247
target_os = @target_os@
248
target_vendor = @target_vendor@
249 82 jeremybenn
top_build_prefix = @top_build_prefix@
250
top_builddir = @top_builddir@
251
top_srcdir = @top_srcdir@
252 90 jeremybenn
SUBDIRS = lib-iftest
253 82 jeremybenn
all: all-recursive
254
 
255
.SUFFIXES:
256
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
257
        @for dep in $?; do \
258
          case '$(am__configure_deps)' in \
259
            *$$dep*) \
260
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
261
                && { if test -f $@; then exit 0; else break; fi; }; \
262
              exit 1;; \
263
          esac; \
264
        done; \
265 90 jeremybenn
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu testsuite/test-code/Makefile'; \
266 82 jeremybenn
        $(am__cd) $(top_srcdir) && \
267 90 jeremybenn
          $(AUTOMAKE) --gnu testsuite/test-code/Makefile
268 82 jeremybenn
.PRECIOUS: Makefile
269
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
270
        @case '$?' in \
271
          *config.status*) \
272
            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
273
          *) \
274
            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
275
            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
276
        esac;
277
 
278
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
279
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
280
 
281
$(top_srcdir)/configure:  $(am__configure_deps)
282
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
283
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
284
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
285
$(am__aclocal_m4_deps):
286
 
287
mostlyclean-libtool:
288
        -rm -f *.lo
289
 
290
clean-libtool:
291
        -rm -rf .libs _libs
292
 
293
# This directory's subdirectories are mostly independent; you can cd
294
# into them and run `make' without going through this Makefile.
295
# To change the values of `make' variables: instead of editing Makefiles,
296
# (1) if the variable is set in `config.status', edit `config.status'
297
#     (which will cause the Makefiles to be regenerated when you run `make');
298
# (2) otherwise, pass the desired values on the `make' command line.
299
$(RECURSIVE_TARGETS):
300
        @fail= failcom='exit 1'; \
301
        for f in x $$MAKEFLAGS; do \
302
          case $$f in \
303
            *=* | --[!k]*);; \
304
            *k*) failcom='fail=yes';; \
305
          esac; \
306
        done; \
307
        dot_seen=no; \
308
        target=`echo $@ | sed s/-recursive//`; \
309
        list='$(SUBDIRS)'; for subdir in $$list; do \
310
          echo "Making $$target in $$subdir"; \
311
          if test "$$subdir" = "."; then \
312
            dot_seen=yes; \
313
            local_target="$$target-am"; \
314
          else \
315
            local_target="$$target"; \
316
          fi; \
317
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
318
          || eval $$failcom; \
319
        done; \
320
        if test "$$dot_seen" = "no"; then \
321
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
322
        fi; test -z "$$fail"
323
 
324
$(RECURSIVE_CLEAN_TARGETS):
325
        @fail= failcom='exit 1'; \
326
        for f in x $$MAKEFLAGS; do \
327
          case $$f in \
328
            *=* | --[!k]*);; \
329
            *k*) failcom='fail=yes';; \
330
          esac; \
331
        done; \
332
        dot_seen=no; \
333
        case "$@" in \
334
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
335
          *) list='$(SUBDIRS)' ;; \
336
        esac; \
337
        rev=''; for subdir in $$list; do \
338
          if test "$$subdir" = "."; then :; else \
339
            rev="$$subdir $$rev"; \
340
          fi; \
341
        done; \
342
        rev="$$rev ."; \
343
        target=`echo $@ | sed s/-recursive//`; \
344
        for subdir in $$rev; do \
345
          echo "Making $$target in $$subdir"; \
346
          if test "$$subdir" = "."; then \
347
            local_target="$$target-am"; \
348
          else \
349
            local_target="$$target"; \
350
          fi; \
351
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
352
          || eval $$failcom; \
353
        done && test -z "$$fail"
354
tags-recursive:
355
        list='$(SUBDIRS)'; for subdir in $$list; do \
356
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
357
        done
358
ctags-recursive:
359
        list='$(SUBDIRS)'; for subdir in $$list; do \
360
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
361
        done
362
 
363
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
364
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
365
        unique=`for i in $$list; do \
366
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
367
          done | \
368
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
369
              END { if (nonempty) { for (i in files) print i; }; }'`; \
370
        mkid -fID $$unique
371
tags: TAGS
372
 
373
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
374
                $(TAGS_FILES) $(LISP)
375
        set x; \
376
        here=`pwd`; \
377
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
378
          include_option=--etags-include; \
379
          empty_fix=.; \
380
        else \
381
          include_option=--include; \
382
          empty_fix=; \
383
        fi; \
384
        list='$(SUBDIRS)'; for subdir in $$list; do \
385
          if test "$$subdir" = .; then :; else \
386
            test ! -f $$subdir/TAGS || \
387
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
388
          fi; \
389
        done; \
390
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
391
        unique=`for i in $$list; do \
392
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
393
          done | \
394
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
395
              END { if (nonempty) { for (i in files) print i; }; }'`; \
396
        shift; \
397
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
398
          test -n "$$unique" || unique=$$empty_fix; \
399
          if test $$# -gt 0; then \
400
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
401
              "$$@" $$unique; \
402
          else \
403
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
404
              $$unique; \
405
          fi; \
406
        fi
407
ctags: CTAGS
408
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
409
                $(TAGS_FILES) $(LISP)
410
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
411
        unique=`for i in $$list; do \
412
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
413
          done | \
414
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
415
              END { if (nonempty) { for (i in files) print i; }; }'`; \
416
        test -z "$(CTAGS_ARGS)$$unique" \
417
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
418
             $$unique
419
 
420
GTAGS:
421
        here=`$(am__cd) $(top_builddir) && pwd` \
422
          && $(am__cd) $(top_srcdir) \
423
          && gtags -i $(GTAGS_ARGS) "$$here"
424
 
425
distclean-tags:
426
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
427
 
428
distdir: $(DISTFILES)
429
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
430
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
431
        list='$(DISTFILES)'; \
432
          dist_files=`for file in $$list; do echo $$file; done | \
433
          sed -e "s|^$$srcdirstrip/||;t" \
434
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
435
        case $$dist_files in \
436
          */*) $(MKDIR_P) `echo "$$dist_files" | \
437
                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
438
                           sort -u` ;; \
439
        esac; \
440
        for file in $$dist_files; do \
441
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
442
          if test -d $$d/$$file; then \
443
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
444
            if test -d "$(distdir)/$$file"; then \
445
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
446
            fi; \
447
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
448
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
449
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
450
            fi; \
451
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
452
          else \
453
            test -f "$(distdir)/$$file" \
454
            || cp -p $$d/$$file "$(distdir)/$$file" \
455
            || exit 1; \
456
          fi; \
457
        done
458
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
459
          if test "$$subdir" = .; then :; else \
460
            test -d "$(distdir)/$$subdir" \
461
            || $(MKDIR_P) "$(distdir)/$$subdir" \
462
            || exit 1; \
463
          fi; \
464
        done
465
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
466
          if test "$$subdir" = .; then :; else \
467
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
468
            $(am__relativize); \
469
            new_distdir=$$reldir; \
470
            dir1=$$subdir; dir2="$(top_distdir)"; \
471
            $(am__relativize); \
472
            new_top_distdir=$$reldir; \
473
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
474
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
475
            ($(am__cd) $$subdir && \
476
              $(MAKE) $(AM_MAKEFLAGS) \
477
                top_distdir="$$new_top_distdir" \
478
                distdir="$$new_distdir" \
479
                am__remove_distdir=: \
480
                am__skip_length_check=: \
481
                am__skip_mode_fix=: \
482
                distdir) \
483
              || exit 1; \
484
          fi; \
485
        done
486
check-am: all-am
487
check: check-recursive
488
all-am: Makefile
489
installdirs: installdirs-recursive
490
installdirs-am:
491
install: install-recursive
492
install-exec: install-exec-recursive
493
install-data: install-data-recursive
494
uninstall: uninstall-recursive
495
 
496
install-am: all-am
497
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
498
 
499
installcheck: installcheck-recursive
500
install-strip:
501
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
502
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
503
          `test -z '$(STRIP)' || \
504
            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
505
mostlyclean-generic:
506
 
507
clean-generic:
508
 
509
distclean-generic:
510
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
511
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
512
 
513
maintainer-clean-generic:
514
        @echo "This command is intended for maintainers to use"
515
        @echo "it deletes files that may require special tools to rebuild."
516
clean: clean-recursive
517
 
518
clean-am: clean-generic clean-libtool mostlyclean-am
519
 
520
distclean: distclean-recursive
521
        -rm -f Makefile
522
distclean-am: clean-am distclean-generic distclean-tags
523
 
524
dvi: dvi-recursive
525
 
526
dvi-am:
527
 
528
html: html-recursive
529
 
530
html-am:
531
 
532
info: info-recursive
533
 
534
info-am:
535
 
536
install-data-am:
537
 
538
install-dvi: install-dvi-recursive
539
 
540
install-dvi-am:
541
 
542
install-exec-am:
543
 
544
install-html: install-html-recursive
545
 
546
install-html-am:
547
 
548
install-info: install-info-recursive
549
 
550
install-info-am:
551
 
552
install-man:
553
 
554
install-pdf: install-pdf-recursive
555
 
556
install-pdf-am:
557
 
558
install-ps: install-ps-recursive
559
 
560
install-ps-am:
561
 
562
installcheck-am:
563
 
564
maintainer-clean: maintainer-clean-recursive
565
        -rm -f Makefile
566
maintainer-clean-am: distclean-am maintainer-clean-generic
567
 
568
mostlyclean: mostlyclean-recursive
569
 
570
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
571
 
572
pdf: pdf-recursive
573
 
574
pdf-am:
575
 
576
ps: ps-recursive
577
 
578
ps-am:
579
 
580
uninstall-am:
581
 
582
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
583
        install-am install-strip tags-recursive
584
 
585
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
586
        all all-am check check-am clean clean-generic clean-libtool \
587
        ctags ctags-recursive distclean distclean-generic \
588
        distclean-libtool distclean-tags distdir dvi dvi-am html \
589
        html-am info info-am install install-am install-data \
590
        install-data-am install-dvi install-dvi-am install-exec \
591
        install-exec-am install-html install-html-am install-info \
592
        install-info-am install-man install-pdf install-pdf-am \
593
        install-ps install-ps-am install-strip installcheck \
594
        installcheck-am installdirs installdirs-am maintainer-clean \
595
        maintainer-clean-generic mostlyclean mostlyclean-generic \
596
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
597
        uninstall uninstall-am
598
 
599
 
600
# Tell versions [3.59,3.63) of GNU make to not export all variables.
601
# Otherwise a system limit (for SysV at least) may be exceeded.
602
.NOEXPORT:

powered by: WebSVN 2.1.0

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