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

Subversion Repositories openrisc

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

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

Line No. Rev Author Line
1 538 julius
# Makefile.in generated by automake 1.11 from Makefile.am.
2 90 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 98 jeremybenn
# Makefile.am for or1ksim OR1K various loop test programs.
19 90 jeremybenn
 
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
VPATH = @srcdir@
43
pkgdatadir = $(datadir)/@PACKAGE@
44
pkgincludedir = $(includedir)/@PACKAGE@
45
pkglibdir = $(libdir)/@PACKAGE@
46
pkglibexecdir = $(libexecdir)/@PACKAGE@
47
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
48
install_sh_DATA = $(install_sh) -c -m 644
49
install_sh_PROGRAM = $(install_sh) -c
50
install_sh_SCRIPT = $(install_sh) -c
51
INSTALL_HEADER = $(INSTALL_DATA)
52
transform = $(program_transform_name)
53
NORMAL_INSTALL = :
54
PRE_INSTALL = :
55
POST_INSTALL = :
56
NORMAL_UNINSTALL = :
57
PRE_UNINSTALL = :
58
POST_UNINSTALL = :
59
build_triplet = @build@
60
host_triplet = @host@
61 98 jeremybenn
check_PROGRAMS = loop$(EXEEXT) loop-init$(EXEEXT) loop-report$(EXEEXT)
62 90 jeremybenn
subdir = loop
63
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
64
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
65
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
66
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
67
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
68
        $(top_srcdir)/configure.ac
69
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
70
        $(ACLOCAL_M4)
71
mkinstalldirs = $(SHELL) $(top_srcdir)/../../mkinstalldirs
72
CONFIG_HEADER = $(top_builddir)/config.h
73
CONFIG_CLEAN_FILES =
74
CONFIG_CLEAN_VPATH_FILES =
75
am_loop_OBJECTS = loop.$(OBJEXT)
76
loop_OBJECTS = $(am_loop_OBJECTS)
77
loop_DEPENDENCIES = ../except/except.lo ../support/libsupport.la
78
loop_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
79
        --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(loop_LDFLAGS) \
80
        $(LDFLAGS) -o $@
81 98 jeremybenn
am_loop_init_OBJECTS = loop-init.$(OBJEXT)
82
loop_init_OBJECTS = $(am_loop_init_OBJECTS)
83
loop_init_DEPENDENCIES = ../except/except.lo ../support/libsupport.la
84
loop_init_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
85
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
86
        $(loop_init_LDFLAGS) $(LDFLAGS) -o $@
87
am_loop_report_OBJECTS = loop-report.$(OBJEXT)
88
loop_report_OBJECTS = $(am_loop_report_OBJECTS)
89
loop_report_DEPENDENCIES = ../except/except.lo \
90
        ../support/libsupport.la
91
loop_report_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
92
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
93
        $(loop_report_LDFLAGS) $(LDFLAGS) -o $@
94 90 jeremybenn
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
95
depcomp = $(SHELL) $(top_srcdir)/../../depcomp
96
am__depfiles_maybe = depfiles
97
am__mv = mv -f
98
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
99
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
100
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
101
        --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
102
        $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
103
CCLD = $(CC)
104
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
105
        --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
106
        $(LDFLAGS) -o $@
107 98 jeremybenn
SOURCES = $(loop_SOURCES) $(loop_init_SOURCES) $(loop_report_SOURCES)
108
DIST_SOURCES = $(loop_SOURCES) $(loop_init_SOURCES) \
109
        $(loop_report_SOURCES)
110 90 jeremybenn
ETAGS = etags
111
CTAGS = ctags
112
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
113
ACLOCAL = @ACLOCAL@
114
AMTAR = @AMTAR@
115
AR = @AR@
116
AUTOCONF = @AUTOCONF@
117
AUTOHEADER = @AUTOHEADER@
118
AUTOMAKE = @AUTOMAKE@
119
AWK = @AWK@
120
CC = @CC@
121
CCAS = @CCAS@
122
CCASDEPMODE = @CCASDEPMODE@
123
CCASFLAGS = @CCASFLAGS@
124
CCDEPMODE = @CCDEPMODE@
125
CFLAGS = @CFLAGS@
126
CPP = @CPP@
127
CPPFLAGS = @CPPFLAGS@
128
CYGPATH_W = @CYGPATH_W@
129
DEFS = @DEFS@
130
DEPDIR = @DEPDIR@
131
DSYMUTIL = @DSYMUTIL@
132
DUMPBIN = @DUMPBIN@
133
ECHO_C = @ECHO_C@
134
ECHO_N = @ECHO_N@
135
ECHO_T = @ECHO_T@
136
EGREP = @EGREP@
137
EXEEXT = @EXEEXT@
138
FGREP = @FGREP@
139
GREP = @GREP@
140
INSTALL = @INSTALL@
141
INSTALL_DATA = @INSTALL_DATA@
142
INSTALL_PROGRAM = @INSTALL_PROGRAM@
143
INSTALL_SCRIPT = @INSTALL_SCRIPT@
144
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
145
LD = @LD@
146
LDFLAGS = @LDFLAGS@
147
LIBOBJS = @LIBOBJS@
148
LIBS = @LIBS@
149
LIBTOOL = @LIBTOOL@
150
LIPO = @LIPO@
151
LN_S = @LN_S@
152
LTLIBOBJS = @LTLIBOBJS@
153
MAKEINFO = @MAKEINFO@
154
MKDIR_P = @MKDIR_P@
155
NM = @NM@
156
NMEDIT = @NMEDIT@
157
OBJDUMP = @OBJDUMP@
158
OBJEXT = @OBJEXT@
159
OTOOL = @OTOOL@
160
OTOOL64 = @OTOOL64@
161
PACKAGE = @PACKAGE@
162
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
163
PACKAGE_NAME = @PACKAGE_NAME@
164
PACKAGE_STRING = @PACKAGE_STRING@
165
PACKAGE_TARNAME = @PACKAGE_TARNAME@
166 346 jeremybenn
PACKAGE_URL = @PACKAGE_URL@
167 90 jeremybenn
PACKAGE_VERSION = @PACKAGE_VERSION@
168
PATH_SEPARATOR = @PATH_SEPARATOR@
169
RANLIB = @RANLIB@
170
SED = @SED@
171
SET_MAKE = @SET_MAKE@
172
SHELL = @SHELL@
173
SIM = @SIM@
174
STRIP = @STRIP@
175
VERSION = @VERSION@
176
abs_builddir = @abs_builddir@
177
abs_srcdir = @abs_srcdir@
178
abs_top_builddir = @abs_top_builddir@
179
abs_top_srcdir = @abs_top_srcdir@
180
ac_ct_CC = @ac_ct_CC@
181
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
182
am__include = @am__include@
183
am__leading_dot = @am__leading_dot@
184
am__quote = @am__quote@
185
am__tar = @am__tar@
186
am__untar = @am__untar@
187
bindir = @bindir@
188
build = @build@
189
build_alias = @build_alias@
190
build_cpu = @build_cpu@
191
build_os = @build_os@
192
build_vendor = @build_vendor@
193
builddir = @builddir@
194
datadir = @datadir@
195
datarootdir = @datarootdir@
196
docdir = @docdir@
197
dvidir = @dvidir@
198
exec_prefix = @exec_prefix@
199
host = @host@
200
host_alias = @host_alias@
201
host_cpu = @host_cpu@
202
host_os = @host_os@
203
host_vendor = @host_vendor@
204
htmldir = @htmldir@
205
includedir = @includedir@
206
infodir = @infodir@
207
install_sh = @install_sh@
208
libdir = @libdir@
209
libexecdir = @libexecdir@
210
localedir = @localedir@
211
localstatedir = @localstatedir@
212
lt_ECHO = @lt_ECHO@
213
mandir = @mandir@
214
mkdir_p = @mkdir_p@
215
oldincludedir = @oldincludedir@
216
pdfdir = @pdfdir@
217
prefix = @prefix@
218
program_transform_name = @program_transform_name@
219
psdir = @psdir@
220
sbindir = @sbindir@
221
sharedstatedir = @sharedstatedir@
222
srcdir = @srcdir@
223
sysconfdir = @sysconfdir@
224
target_alias = @target_alias@
225
top_build_prefix = @top_build_prefix@
226
top_builddir = @top_builddir@
227
top_srcdir = @top_srcdir@
228 98 jeremybenn
 
229
# Simple loop
230 90 jeremybenn
loop_SOURCES = loop.c
231
loop_LDFLAGS = -T$(srcdir)/../default.ld
232
loop_LDADD = ../except/except.lo      \
233
                 ../support/libsupport.la
234
 
235 98 jeremybenn
 
236
# Loop with initialization
237
loop_init_SOURCES = loop-init.c
238
loop_init_LDFLAGS = -T$(srcdir)/../default.ld
239
loop_init_LDADD = ../except/except.lo      \
240
                    ../support/libsupport.la
241
 
242
 
243
# Loop with reporting
244
loop_report_SOURCES = loop-report.c
245
loop_report_LDFLAGS = -T$(srcdir)/../default.ld
246
loop_report_LDADD = ../except/except.lo      \
247
                      ../support/libsupport.la
248
 
249 90 jeremybenn
all: all-am
250
 
251
.SUFFIXES:
252
.SUFFIXES: .c .lo .o .obj
253
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
254
        @for dep in $?; do \
255
          case '$(am__configure_deps)' in \
256
            *$$dep*) \
257
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
258
                && { if test -f $@; then exit 0; else break; fi; }; \
259
              exit 1;; \
260
          esac; \
261
        done; \
262
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu loop/Makefile'; \
263
        $(am__cd) $(top_srcdir) && \
264
          $(AUTOMAKE) --gnu loop/Makefile
265
.PRECIOUS: Makefile
266
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
267
        @case '$?' in \
268
          *config.status*) \
269
            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
270
          *) \
271
            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
272
            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
273
        esac;
274
 
275
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
276
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
277
 
278
$(top_srcdir)/configure:  $(am__configure_deps)
279
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
280
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
281
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
282
$(am__aclocal_m4_deps):
283
 
284
clean-checkPROGRAMS:
285
        @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
286
        echo " rm -f" $$list; \
287
        rm -f $$list || exit $$?; \
288
        test -n "$(EXEEXT)" || exit 0; \
289
        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
290
        echo " rm -f" $$list; \
291
        rm -f $$list
292
loop$(EXEEXT): $(loop_OBJECTS) $(loop_DEPENDENCIES)
293
        @rm -f loop$(EXEEXT)
294
        $(loop_LINK) $(loop_OBJECTS) $(loop_LDADD) $(LIBS)
295 98 jeremybenn
loop-init$(EXEEXT): $(loop_init_OBJECTS) $(loop_init_DEPENDENCIES)
296
        @rm -f loop-init$(EXEEXT)
297
        $(loop_init_LINK) $(loop_init_OBJECTS) $(loop_init_LDADD) $(LIBS)
298
loop-report$(EXEEXT): $(loop_report_OBJECTS) $(loop_report_DEPENDENCIES)
299
        @rm -f loop-report$(EXEEXT)
300
        $(loop_report_LINK) $(loop_report_OBJECTS) $(loop_report_LDADD) $(LIBS)
301 90 jeremybenn
 
302
mostlyclean-compile:
303
        -rm -f *.$(OBJEXT)
304
 
305
distclean-compile:
306
        -rm -f *.tab.c
307
 
308 98 jeremybenn
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/loop-init.Po@am__quote@
309
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/loop-report.Po@am__quote@
310 90 jeremybenn
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/loop.Po@am__quote@
311
 
312
.c.o:
313
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
314
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
315
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
316
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
317
@am__fastdepCC_FALSE@   $(COMPILE) -c $<
318
 
319
.c.obj:
320
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
321
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
322
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
323
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
324
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
325
 
326
.c.lo:
327
@am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
328
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
329
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
330
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
331
@am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
332
 
333
mostlyclean-libtool:
334
        -rm -f *.lo
335
 
336
clean-libtool:
337
        -rm -rf .libs _libs
338
 
339
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
340
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
341
        unique=`for i in $$list; do \
342
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
343
          done | \
344
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
345
              END { if (nonempty) { for (i in files) print i; }; }'`; \
346
        mkid -fID $$unique
347
tags: TAGS
348
 
349
TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
350
                $(TAGS_FILES) $(LISP)
351
        set x; \
352
        here=`pwd`; \
353
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
354
        unique=`for i in $$list; do \
355
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
356
          done | \
357
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
358
              END { if (nonempty) { for (i in files) print i; }; }'`; \
359
        shift; \
360
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
361
          test -n "$$unique" || unique=$$empty_fix; \
362
          if test $$# -gt 0; then \
363
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
364
              "$$@" $$unique; \
365
          else \
366
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
367
              $$unique; \
368
          fi; \
369
        fi
370
ctags: CTAGS
371
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
372
                $(TAGS_FILES) $(LISP)
373
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
374
        unique=`for i in $$list; do \
375
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
376
          done | \
377
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
378
              END { if (nonempty) { for (i in files) print i; }; }'`; \
379
        test -z "$(CTAGS_ARGS)$$unique" \
380
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
381
             $$unique
382
 
383
GTAGS:
384
        here=`$(am__cd) $(top_builddir) && pwd` \
385
          && $(am__cd) $(top_srcdir) \
386
          && gtags -i $(GTAGS_ARGS) "$$here"
387
 
388
distclean-tags:
389
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
390
 
391
distdir: $(DISTFILES)
392
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
393
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
394
        list='$(DISTFILES)'; \
395
          dist_files=`for file in $$list; do echo $$file; done | \
396
          sed -e "s|^$$srcdirstrip/||;t" \
397
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
398
        case $$dist_files in \
399
          */*) $(MKDIR_P) `echo "$$dist_files" | \
400
                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
401
                           sort -u` ;; \
402
        esac; \
403
        for file in $$dist_files; do \
404
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
405
          if test -d $$d/$$file; then \
406
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
407
            if test -d "$(distdir)/$$file"; then \
408
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
409
            fi; \
410
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
411
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
412
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
413
            fi; \
414
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
415
          else \
416
            test -f "$(distdir)/$$file" \
417
            || cp -p $$d/$$file "$(distdir)/$$file" \
418
            || exit 1; \
419
          fi; \
420
        done
421
check-am: all-am
422
        $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
423
check: check-am
424
all-am: Makefile
425
installdirs:
426
install: install-am
427
install-exec: install-exec-am
428
install-data: install-data-am
429
uninstall: uninstall-am
430
 
431
install-am: all-am
432
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
433
 
434
installcheck: installcheck-am
435
install-strip:
436
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
437
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
438
          `test -z '$(STRIP)' || \
439
            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
440
mostlyclean-generic:
441
 
442
clean-generic:
443
 
444
distclean-generic:
445
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
446
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
447
 
448
maintainer-clean-generic:
449
        @echo "This command is intended for maintainers to use"
450
        @echo "it deletes files that may require special tools to rebuild."
451
clean: clean-am
452
 
453
clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
454
        mostlyclean-am
455
 
456
distclean: distclean-am
457
        -rm -rf ./$(DEPDIR)
458
        -rm -f Makefile
459
distclean-am: clean-am distclean-compile distclean-generic \
460
        distclean-tags
461
 
462
dvi: dvi-am
463
 
464
dvi-am:
465
 
466
html: html-am
467
 
468
html-am:
469
 
470
info: info-am
471
 
472
info-am:
473
 
474
install-data-am:
475
 
476
install-dvi: install-dvi-am
477
 
478
install-dvi-am:
479
 
480
install-exec-am:
481
 
482
install-html: install-html-am
483
 
484
install-html-am:
485
 
486
install-info: install-info-am
487
 
488
install-info-am:
489
 
490
install-man:
491
 
492
install-pdf: install-pdf-am
493
 
494
install-pdf-am:
495
 
496
install-ps: install-ps-am
497
 
498
install-ps-am:
499
 
500
installcheck-am:
501
 
502
maintainer-clean: maintainer-clean-am
503
        -rm -rf ./$(DEPDIR)
504
        -rm -f Makefile
505
maintainer-clean-am: distclean-am maintainer-clean-generic
506
 
507
mostlyclean: mostlyclean-am
508
 
509
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
510
        mostlyclean-libtool
511
 
512
pdf: pdf-am
513
 
514
pdf-am:
515
 
516
ps: ps-am
517
 
518
ps-am:
519
 
520
uninstall-am:
521
 
522
.MAKE: check-am install-am install-strip
523
 
524
.PHONY: CTAGS GTAGS all all-am check check-am clean \
525
        clean-checkPROGRAMS clean-generic clean-libtool ctags \
526
        distclean distclean-compile distclean-generic \
527
        distclean-libtool distclean-tags distdir dvi dvi-am html \
528
        html-am info info-am install install-am install-data \
529
        install-data-am install-dvi install-dvi-am install-exec \
530
        install-exec-am install-html install-html-am install-info \
531
        install-info-am install-man install-pdf install-pdf-am \
532
        install-ps install-ps-am install-strip installcheck \
533
        installcheck-am installdirs maintainer-clean \
534
        maintainer-clean-generic mostlyclean mostlyclean-compile \
535
        mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
536
        tags uninstall uninstall-am
537
 
538
 
539
# Tell versions [3.59,3.63) of GNU make to not export all variables.
540
# Otherwise a system limit (for SysV at least) may be exceeded.
541
.NOEXPORT:

powered by: WebSVN 2.1.0

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