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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1ksim/] [testsuite/] [Makefile.in] - Blame information for rev 625

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

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

powered by: WebSVN 2.1.0

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