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

Subversion Repositories openrisc

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

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
MKDIR_P = @MKDIR_P@
171
NM = @NM@
172
NMEDIT = @NMEDIT@
173
OBJDUMP = @OBJDUMP@
174
OBJEXT = @OBJEXT@
175
OTOOL = @OTOOL@
176
OTOOL64 = @OTOOL64@
177
PACKAGE = @PACKAGE@
178
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
179
PACKAGE_NAME = @PACKAGE_NAME@
180
PACKAGE_STRING = @PACKAGE_STRING@
181
PACKAGE_TARNAME = @PACKAGE_TARNAME@
182
PACKAGE_VERSION = @PACKAGE_VERSION@
183
PATH_SEPARATOR = @PATH_SEPARATOR@
184 90 jeremybenn
POW_LIB = @POW_LIB@
185 82 jeremybenn
RANLIB = @RANLIB@
186
SED = @SED@
187
SET_MAKE = @SET_MAKE@
188
SHELL = @SHELL@
189
STRIP = @STRIP@
190 90 jeremybenn
SUMVERSION = @SUMVERSION@
191
TERMCAP_LIB = @TERMCAP_LIB@
192 82 jeremybenn
VERSION = @VERSION@
193
abs_builddir = @abs_builddir@
194
abs_srcdir = @abs_srcdir@
195
abs_top_builddir = @abs_top_builddir@
196
abs_top_srcdir = @abs_top_srcdir@
197
ac_ct_CC = @ac_ct_CC@
198
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
199
am__include = @am__include@
200
am__leading_dot = @am__leading_dot@
201
am__quote = @am__quote@
202
am__tar = @am__tar@
203
am__untar = @am__untar@
204
bindir = @bindir@
205
build = @build@
206
build_alias = @build_alias@
207
build_cpu = @build_cpu@
208
build_os = @build_os@
209
build_vendor = @build_vendor@
210
builddir = @builddir@
211
datadir = @datadir@
212
datarootdir = @datarootdir@
213
docdir = @docdir@
214
dvidir = @dvidir@
215
exec_prefix = @exec_prefix@
216
host = @host@
217
host_alias = @host_alias@
218
host_cpu = @host_cpu@
219
host_os = @host_os@
220
host_vendor = @host_vendor@
221
htmldir = @htmldir@
222
includedir = @includedir@
223
infodir = @infodir@
224
install_sh = @install_sh@
225
libdir = @libdir@
226
libexecdir = @libexecdir@
227
localedir = @localedir@
228
localstatedir = @localstatedir@
229
lt_ECHO = @lt_ECHO@
230
mandir = @mandir@
231
mkdir_p = @mkdir_p@
232
oldincludedir = @oldincludedir@
233
pdfdir = @pdfdir@
234
prefix = @prefix@
235
program_transform_name = @program_transform_name@
236
psdir = @psdir@
237
sbindir = @sbindir@
238
sharedstatedir = @sharedstatedir@
239
srcdir = @srcdir@
240 90 jeremybenn
subdirs = @subdirs@
241 82 jeremybenn
sysconfdir = @sysconfdir@
242 90 jeremybenn
target = @target@
243 82 jeremybenn
target_alias = @target_alias@
244 90 jeremybenn
target_cpu = @target_cpu@
245
target_os = @target_os@
246
target_vendor = @target_vendor@
247 82 jeremybenn
top_build_prefix = @top_build_prefix@
248
top_builddir = @top_builddir@
249
top_srcdir = @top_srcdir@
250 93 jeremybenn
SUBDIRS = lib-iftest  \
251
          lib-inttest \
252
          lib-upcalls
253
 
254 82 jeremybenn
all: all-recursive
255
 
256
.SUFFIXES:
257
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
258
        @for dep in $?; do \
259
          case '$(am__configure_deps)' in \
260
            *$$dep*) \
261
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
262
                && { if test -f $@; then exit 0; else break; fi; }; \
263
              exit 1;; \
264
          esac; \
265
        done; \
266 90 jeremybenn
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu testsuite/test-code/Makefile'; \
267 82 jeremybenn
        $(am__cd) $(top_srcdir) && \
268 90 jeremybenn
          $(AUTOMAKE) --gnu testsuite/test-code/Makefile
269 82 jeremybenn
.PRECIOUS: Makefile
270
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
271
        @case '$?' in \
272
          *config.status*) \
273
            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
274
          *) \
275
            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
276
            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
277
        esac;
278
 
279
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
280
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
281
 
282
$(top_srcdir)/configure:  $(am__configure_deps)
283
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
284
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
285
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
286
$(am__aclocal_m4_deps):
287
 
288
mostlyclean-libtool:
289
        -rm -f *.lo
290
 
291
clean-libtool:
292
        -rm -rf .libs _libs
293
 
294
# This directory's subdirectories are mostly independent; you can cd
295
# into them and run `make' without going through this Makefile.
296
# To change the values of `make' variables: instead of editing Makefiles,
297
# (1) if the variable is set in `config.status', edit `config.status'
298
#     (which will cause the Makefiles to be regenerated when you run `make');
299
# (2) otherwise, pass the desired values on the `make' command line.
300
$(RECURSIVE_TARGETS):
301
        @fail= failcom='exit 1'; \
302
        for f in x $$MAKEFLAGS; do \
303
          case $$f in \
304
            *=* | --[!k]*);; \
305
            *k*) failcom='fail=yes';; \
306
          esac; \
307
        done; \
308
        dot_seen=no; \
309
        target=`echo $@ | sed s/-recursive//`; \
310
        list='$(SUBDIRS)'; for subdir in $$list; do \
311
          echo "Making $$target in $$subdir"; \
312
          if test "$$subdir" = "."; then \
313
            dot_seen=yes; \
314
            local_target="$$target-am"; \
315
          else \
316
            local_target="$$target"; \
317
          fi; \
318
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
319
          || eval $$failcom; \
320
        done; \
321
        if test "$$dot_seen" = "no"; then \
322
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
323
        fi; test -z "$$fail"
324
 
325
$(RECURSIVE_CLEAN_TARGETS):
326
        @fail= failcom='exit 1'; \
327
        for f in x $$MAKEFLAGS; do \
328
          case $$f in \
329
            *=* | --[!k]*);; \
330
            *k*) failcom='fail=yes';; \
331
          esac; \
332
        done; \
333
        dot_seen=no; \
334
        case "$@" in \
335
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
336
          *) list='$(SUBDIRS)' ;; \
337
        esac; \
338
        rev=''; for subdir in $$list; do \
339
          if test "$$subdir" = "."; then :; else \
340
            rev="$$subdir $$rev"; \
341
          fi; \
342
        done; \
343
        rev="$$rev ."; \
344
        target=`echo $@ | sed s/-recursive//`; \
345
        for subdir in $$rev; do \
346
          echo "Making $$target in $$subdir"; \
347
          if test "$$subdir" = "."; then \
348
            local_target="$$target-am"; \
349
          else \
350
            local_target="$$target"; \
351
          fi; \
352
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
353
          || eval $$failcom; \
354
        done && test -z "$$fail"
355
tags-recursive:
356
        list='$(SUBDIRS)'; for subdir in $$list; do \
357
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
358
        done
359
ctags-recursive:
360
        list='$(SUBDIRS)'; for subdir in $$list; do \
361
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
362
        done
363
 
364
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
365
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
366
        unique=`for i in $$list; do \
367
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
368
          done | \
369
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
370
              END { if (nonempty) { for (i in files) print i; }; }'`; \
371
        mkid -fID $$unique
372
tags: TAGS
373
 
374
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
375
                $(TAGS_FILES) $(LISP)
376
        set x; \
377
        here=`pwd`; \
378
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
379
          include_option=--etags-include; \
380
          empty_fix=.; \
381
        else \
382
          include_option=--include; \
383
          empty_fix=; \
384
        fi; \
385
        list='$(SUBDIRS)'; for subdir in $$list; do \
386
          if test "$$subdir" = .; then :; else \
387
            test ! -f $$subdir/TAGS || \
388
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
389
          fi; \
390
        done; \
391
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
392
        unique=`for i in $$list; do \
393
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
394
          done | \
395
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
396
              END { if (nonempty) { for (i in files) print i; }; }'`; \
397
        shift; \
398
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
399
          test -n "$$unique" || unique=$$empty_fix; \
400
          if test $$# -gt 0; then \
401
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
402
              "$$@" $$unique; \
403
          else \
404
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
405
              $$unique; \
406
          fi; \
407
        fi
408
ctags: CTAGS
409
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
410
                $(TAGS_FILES) $(LISP)
411
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
412
        unique=`for i in $$list; do \
413
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
414
          done | \
415
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
416
              END { if (nonempty) { for (i in files) print i; }; }'`; \
417
        test -z "$(CTAGS_ARGS)$$unique" \
418
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
419
             $$unique
420
 
421
GTAGS:
422
        here=`$(am__cd) $(top_builddir) && pwd` \
423
          && $(am__cd) $(top_srcdir) \
424
          && gtags -i $(GTAGS_ARGS) "$$here"
425
 
426
distclean-tags:
427
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
428
 
429
distdir: $(DISTFILES)
430
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
431
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
432
        list='$(DISTFILES)'; \
433
          dist_files=`for file in $$list; do echo $$file; done | \
434
          sed -e "s|^$$srcdirstrip/||;t" \
435
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
436
        case $$dist_files in \
437
          */*) $(MKDIR_P) `echo "$$dist_files" | \
438
                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
439
                           sort -u` ;; \
440
        esac; \
441
        for file in $$dist_files; do \
442
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
443
          if test -d $$d/$$file; then \
444
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
445
            if test -d "$(distdir)/$$file"; then \
446
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
447
            fi; \
448
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
449
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
450
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
451
            fi; \
452
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
453
          else \
454
            test -f "$(distdir)/$$file" \
455
            || cp -p $$d/$$file "$(distdir)/$$file" \
456
            || exit 1; \
457
          fi; \
458
        done
459
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
460
          if test "$$subdir" = .; then :; else \
461
            test -d "$(distdir)/$$subdir" \
462
            || $(MKDIR_P) "$(distdir)/$$subdir" \
463
            || exit 1; \
464
          fi; \
465
        done
466
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
467
          if test "$$subdir" = .; then :; else \
468
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
469
            $(am__relativize); \
470
            new_distdir=$$reldir; \
471
            dir1=$$subdir; dir2="$(top_distdir)"; \
472
            $(am__relativize); \
473
            new_top_distdir=$$reldir; \
474
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
475
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
476
            ($(am__cd) $$subdir && \
477
              $(MAKE) $(AM_MAKEFLAGS) \
478
                top_distdir="$$new_top_distdir" \
479
                distdir="$$new_distdir" \
480
                am__remove_distdir=: \
481
                am__skip_length_check=: \
482
                am__skip_mode_fix=: \
483
                distdir) \
484
              || exit 1; \
485
          fi; \
486
        done
487
check-am: all-am
488
check: check-recursive
489
all-am: Makefile
490
installdirs: installdirs-recursive
491
installdirs-am:
492
install: install-recursive
493
install-exec: install-exec-recursive
494
install-data: install-data-recursive
495
uninstall: uninstall-recursive
496
 
497
install-am: all-am
498
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
499
 
500
installcheck: installcheck-recursive
501
install-strip:
502
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
503
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
504
          `test -z '$(STRIP)' || \
505
            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
506
mostlyclean-generic:
507
 
508
clean-generic:
509
 
510
distclean-generic:
511
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
512
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
513
 
514
maintainer-clean-generic:
515
        @echo "This command is intended for maintainers to use"
516
        @echo "it deletes files that may require special tools to rebuild."
517
clean: clean-recursive
518
 
519
clean-am: clean-generic clean-libtool mostlyclean-am
520
 
521
distclean: distclean-recursive
522
        -rm -f Makefile
523
distclean-am: clean-am distclean-generic distclean-tags
524
 
525
dvi: dvi-recursive
526
 
527
dvi-am:
528
 
529
html: html-recursive
530
 
531
html-am:
532
 
533
info: info-recursive
534
 
535
info-am:
536
 
537
install-data-am:
538
 
539
install-dvi: install-dvi-recursive
540
 
541
install-dvi-am:
542
 
543
install-exec-am:
544
 
545
install-html: install-html-recursive
546
 
547
install-html-am:
548
 
549
install-info: install-info-recursive
550
 
551
install-info-am:
552
 
553
install-man:
554
 
555
install-pdf: install-pdf-recursive
556
 
557
install-pdf-am:
558
 
559
install-ps: install-ps-recursive
560
 
561
install-ps-am:
562
 
563
installcheck-am:
564
 
565
maintainer-clean: maintainer-clean-recursive
566
        -rm -f Makefile
567
maintainer-clean-am: distclean-am maintainer-clean-generic
568
 
569
mostlyclean: mostlyclean-recursive
570
 
571
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
572
 
573
pdf: pdf-recursive
574
 
575
pdf-am:
576
 
577
ps: ps-recursive
578
 
579
ps-am:
580
 
581
uninstall-am:
582
 
583
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
584
        install-am install-strip tags-recursive
585
 
586
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
587
        all all-am check check-am clean clean-generic clean-libtool \
588
        ctags ctags-recursive distclean distclean-generic \
589
        distclean-libtool distclean-tags distdir dvi dvi-am html \
590
        html-am info info-am install install-am install-data \
591
        install-data-am install-dvi install-dvi-am install-exec \
592
        install-exec-am install-html install-html-am install-info \
593
        install-info-am install-man install-pdf install-pdf-am \
594
        install-ps install-ps-am install-strip installcheck \
595
        installcheck-am installdirs installdirs-am maintainer-clean \
596
        maintainer-clean-generic mostlyclean mostlyclean-generic \
597
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
598
        uninstall uninstall-am
599
 
600
 
601
# Tell versions [3.59,3.63) of GNU make to not export all variables.
602
# Otherwise a system limit (for SysV at least) may be exceeded.
603
.NOEXPORT:

powered by: WebSVN 2.1.0

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