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

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_40/] [or1ksim/] [Makefile.in] - Blame information for rev 241

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

Line No. Rev Author Line
1 7 jrydberg
# Makefile.in generated automatically by automake 1.4 from Makefile.am
2
 
3
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
4
# This Makefile.in is free software; the Free Software Foundation
5
# gives unlimited permission to copy and/or distribute it,
6
# with or without modifications, as long as this notice is preserved.
7
 
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11
# PARTICULAR PURPOSE.
12
 
13
#
14
#
15
#
16
#
17
#
18
 
19
 
20
SHELL = @SHELL@
21
 
22
srcdir = @srcdir@
23
top_srcdir = @top_srcdir@
24
VPATH = @srcdir@
25
prefix = @prefix@
26
exec_prefix = @exec_prefix@
27
 
28
bindir = @bindir@
29
sbindir = @sbindir@
30
libexecdir = @libexecdir@
31
datadir = @datadir@
32
sysconfdir = @sysconfdir@
33
sharedstatedir = @sharedstatedir@
34
localstatedir = @localstatedir@
35
libdir = @libdir@
36
infodir = @infodir@
37
mandir = @mandir@
38
includedir = @includedir@
39
oldincludedir = /usr/include
40
 
41
DESTDIR =
42
 
43
pkgdatadir = $(datadir)/@PACKAGE@
44
pkglibdir = $(libdir)/@PACKAGE@
45
pkgincludedir = $(includedir)/@PACKAGE@
46
 
47
top_builddir = .
48
 
49
ACLOCAL = @ACLOCAL@
50
AUTOCONF = @AUTOCONF@
51
AUTOMAKE = @AUTOMAKE@
52
AUTOHEADER = @AUTOHEADER@
53
 
54
INSTALL = @INSTALL@
55
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
56
INSTALL_DATA = @INSTALL_DATA@
57
INSTALL_SCRIPT = @INSTALL_SCRIPT@
58
transform = @program_transform_name@
59
 
60
NORMAL_INSTALL = :
61
PRE_INSTALL = :
62
POST_INSTALL = :
63
NORMAL_UNINSTALL = :
64
PRE_UNINSTALL = :
65
POST_UNINSTALL = :
66 13 jrydberg
build_alias = @build_alias@
67
build_triplet = @build@
68 7 jrydberg
host_alias = @host_alias@
69
host_triplet = @host@
70 13 jrydberg
target_alias = @target_alias@
71
target_triplet = @target@
72 7 jrydberg
AR = @AR@
73
ARFLAGS = @ARFLAGS@
74
BUILD_DIR = @BUILD_DIR@
75
CC = @CC@
76
CFLAGS = @CFLAGS@
77
CPU_ARCH = @CPU_ARCH@
78 221 markom
FPM = @FPM@
79 7 jrydberg
INCLUDES = @INCLUDES@
80
LOCAL_CFLAGS = @LOCAL_CFLAGS@
81
LOCAL_DEFS = @LOCAL_DEFS@
82
LOCAL_LDFLAGS = @LOCAL_LDFLAGS@
83
MAKEINFO = @MAKEINFO@
84
MAKE_SHELL = @MAKE_SHELL@
85
PACKAGE = @PACKAGE@
86
RANLIB = @RANLIB@
87
SUMVERSION = @SUMVERSION@
88
TERMCAP_LIB = @TERMCAP_LIB@
89
VERSION = @VERSION@
90
host = @host@
91
host_cpu = @host_cpu@
92
host_os = @host_os@
93
 
94 221 markom
SUBDIRS = cpu bpb support cache mmu peripheral tick pm pic debug
95 7 jrydberg
 
96 241 markom
bin_PROGRAMS = sim
97 173 markom
EXTRA_PROGRAMS = profiler
98 7 jrydberg
 
99
sim_SOURCES = toplevel.c sim-config.c
100 221 markom
sim_LDADD = cpu/common/libcommon.a cpu/$(CPU_ARCH)/libarch.a    cpu/or1k/libor1k.a support/libsupport.a mmu/libmmu.a    bpb/libbpb.a cache/libcache.a peripheral/libperipheral.a        tick/libtick.a pm/libpm.a pic/libpic.a debug/libdebug.a
101 7 jrydberg
 
102 123 markom
sim_LDFLAGS = #-lreadline
103 173 markom
profiler_SOURCES = profiler.c
104 7 jrydberg
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
105
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
106
CONFIG_HEADER = config.h
107
CONFIG_CLEAN_FILES =
108 241 markom
PROGRAMS =  $(bin_PROGRAMS)
109 7 jrydberg
 
110
 
111
DEFS = @DEFS@ -I. -I$(srcdir) -I.
112
CPPFLAGS = @CPPFLAGS@
113
LDFLAGS = @LDFLAGS@
114
LIBS = @LIBS@
115 173 markom
profiler_OBJECTS =  profiler.o
116
profiler_LDADD = $(LDADD)
117
profiler_DEPENDENCIES =
118
profiler_LDFLAGS =
119 7 jrydberg
sim_OBJECTS =  toplevel.o sim-config.o
120 30 lampret
sim_DEPENDENCIES =  cpu/common/libcommon.a cpu/$(CPU_ARCH)/libarch.a \
121
cpu/or1k/libor1k.a support/libsupport.a mmu/libmmu.a bpb/libbpb.a \
122 103 lampret
cache/libcache.a peripheral/libperipheral.a tick/libtick.a pm/libpm.a \
123 221 markom
pic/libpic.a debug/libdebug.a
124 7 jrydberg
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
125
CCLD = $(CC)
126
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
127 221 markom
DIST_COMMON =  README ./stamp-h.in AUTHORS COPYING ChangeLog INSTALL \
128
Makefile.am Makefile.in NEWS TODO acconfig.h aclocal.m4 config.guess \
129
config.h.in config.sub configure configure.in install-sh missing \
130
mkinstalldirs
131 7 jrydberg
 
132
 
133
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
134
 
135 54 lampret
TAR = gtar
136 7 jrydberg
GZIP_ENV = --best
137 173 markom
DEP_FILES =  .deps/profiler.P .deps/sim-config.P .deps/toplevel.P
138
SOURCES = $(profiler_SOURCES) $(sim_SOURCES)
139
OBJECTS = $(profiler_OBJECTS) $(sim_OBJECTS)
140 7 jrydberg
 
141
all: all-redirect
142
.SUFFIXES:
143
.SUFFIXES: .S .c .o .s
144
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
145 18 lampret
        cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile
146 7 jrydberg
 
147
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
148
        cd $(top_builddir) \
149
          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
150
 
151
$(ACLOCAL_M4):  configure.in
152
        cd $(srcdir) && $(ACLOCAL)
153
 
154
config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
155
        $(SHELL) ./config.status --recheck
156
$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
157
        cd $(srcdir) && $(AUTOCONF)
158
 
159
config.h: stamp-h
160
        @if test ! -f $@; then \
161
                rm -f stamp-h; \
162
                $(MAKE) stamp-h; \
163
        else :; fi
164
stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status
165
        cd $(top_builddir) \
166
          && CONFIG_FILES= CONFIG_HEADERS=config.h \
167
             $(SHELL) ./config.status
168
        @echo timestamp > stamp-h 2> /dev/null
169
$(srcdir)/config.h.in: $(srcdir)/stamp-h.in
170
        @if test ! -f $@; then \
171
                rm -f $(srcdir)/stamp-h.in; \
172
                $(MAKE) $(srcdir)/stamp-h.in; \
173
        else :; fi
174 123 markom
$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
175 7 jrydberg
        cd $(top_srcdir) && $(AUTOHEADER)
176
        @echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null
177
 
178
mostlyclean-hdr:
179
 
180
clean-hdr:
181
 
182
distclean-hdr:
183
        -rm -f config.h
184
 
185
maintainer-clean-hdr:
186
 
187 241 markom
mostlyclean-binPROGRAMS:
188 7 jrydberg
 
189 241 markom
clean-binPROGRAMS:
190
        -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
191 7 jrydberg
 
192 241 markom
distclean-binPROGRAMS:
193 7 jrydberg
 
194 241 markom
maintainer-clean-binPROGRAMS:
195 7 jrydberg
 
196 241 markom
install-binPROGRAMS: $(bin_PROGRAMS)
197
        @$(NORMAL_INSTALL)
198
        $(mkinstalldirs) $(DESTDIR)$(bindir)
199
        @list='$(bin_PROGRAMS)'; for p in $$list; do \
200
          if test -f $$p; then \
201
            echo "  $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
202
             $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
203
          else :; fi; \
204
        done
205
 
206
uninstall-binPROGRAMS:
207
        @$(NORMAL_UNINSTALL)
208
        list='$(bin_PROGRAMS)'; for p in $$list; do \
209
          rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
210
        done
211
 
212 7 jrydberg
.s.o:
213
        $(COMPILE) -c $<
214
 
215
.S.o:
216
        $(COMPILE) -c $<
217
 
218
mostlyclean-compile:
219
        -rm -f *.o core *.core
220
 
221
clean-compile:
222
 
223
distclean-compile:
224
        -rm -f *.tab.c
225
 
226
maintainer-clean-compile:
227
 
228 173 markom
profiler: $(profiler_OBJECTS) $(profiler_DEPENDENCIES)
229
        @rm -f profiler
230
        $(LINK) $(profiler_LDFLAGS) $(profiler_OBJECTS) $(profiler_LDADD) $(LIBS)
231
 
232 7 jrydberg
sim: $(sim_OBJECTS) $(sim_DEPENDENCIES)
233
        @rm -f sim
234
        $(LINK) $(sim_LDFLAGS) $(sim_OBJECTS) $(sim_LDADD) $(LIBS)
235
 
236
# This directory's subdirectories are mostly independent; you can cd
237
# into them and run `make' without going through this Makefile.
238
# To change the values of `make' variables: instead of editing Makefiles,
239
# (1) if the variable is set in `config.status', edit `config.status'
240
#     (which will cause the Makefiles to be regenerated when you run `make');
241
# (2) otherwise, pass the desired values on the `make' command line.
242
 
243
@SET_MAKE@
244
 
245
all-recursive install-data-recursive install-exec-recursive \
246
installdirs-recursive install-recursive uninstall-recursive  \
247
check-recursive installcheck-recursive info-recursive dvi-recursive:
248
        @set fnord $(MAKEFLAGS); amf=$$2; \
249
        dot_seen=no; \
250
        target=`echo $@ | sed s/-recursive//`; \
251
        list='$(SUBDIRS)'; for subdir in $$list; do \
252
          echo "Making $$target in $$subdir"; \
253
          if test "$$subdir" = "."; then \
254
            dot_seen=yes; \
255
            local_target="$$target-am"; \
256
          else \
257
            local_target="$$target"; \
258
          fi; \
259
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
260
           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
261
        done; \
262
        if test "$$dot_seen" = "no"; then \
263
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
264
        fi; test -z "$$fail"
265
 
266
mostlyclean-recursive clean-recursive distclean-recursive \
267
maintainer-clean-recursive:
268
        @set fnord $(MAKEFLAGS); amf=$$2; \
269
        dot_seen=no; \
270
        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
271
          rev="$$subdir $$rev"; \
272
          test "$$subdir" = "." && dot_seen=yes; \
273
        done; \
274
        test "$$dot_seen" = "no" && rev=". $$rev"; \
275
        target=`echo $@ | sed s/-recursive//`; \
276
        for subdir in $$rev; do \
277
          echo "Making $$target in $$subdir"; \
278
          if test "$$subdir" = "."; then \
279
            local_target="$$target-am"; \
280
          else \
281
            local_target="$$target"; \
282
          fi; \
283
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
284
           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
285
        done && test -z "$$fail"
286
tags-recursive:
287
        list='$(SUBDIRS)'; for subdir in $$list; do \
288
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
289
        done
290
 
291
tags: TAGS
292
 
293
ID: $(HEADERS) $(SOURCES) $(LISP)
294
        list='$(SOURCES) $(HEADERS)'; \
295
        unique=`for i in $$list; do echo $$i; done | \
296
          awk '    { files[$$0] = 1; } \
297
               END { for (i in files) print i; }'`; \
298
        here=`pwd` && cd $(srcdir) \
299
          && mkid -f$$here/ID $$unique $(LISP)
300
 
301
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) $(LISP)
302
        tags=; \
303
        here=`pwd`; \
304
        list='$(SUBDIRS)'; for subdir in $$list; do \
305
   if test "$$subdir" = .; then :; else \
306
            test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
307
   fi; \
308
        done; \
309
        list='$(SOURCES) $(HEADERS)'; \
310
        unique=`for i in $$list; do echo $$i; done | \
311
          awk '    { files[$$0] = 1; } \
312
               END { for (i in files) print i; }'`; \
313
        test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \
314
          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP) -o $$here/TAGS)
315
 
316
mostlyclean-tags:
317
 
318
clean-tags:
319
 
320
distclean-tags:
321
        -rm -f TAGS ID
322
 
323
maintainer-clean-tags:
324
 
325
distdir = $(PACKAGE)-$(VERSION)
326
top_distdir = $(distdir)
327
 
328
# This target untars the dist file and tries a VPATH configuration.  Then
329
# it guarantees that the distribution is self-contained by making another
330
# tarfile.
331
distcheck: dist
332
        -rm -rf $(distdir)
333
        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
334
        mkdir $(distdir)/=build
335
        mkdir $(distdir)/=inst
336
        dc_install_base=`cd $(distdir)/=inst && pwd`; \
337
        cd $(distdir)/=build \
338
          && ../configure --srcdir=.. --prefix=$$dc_install_base \
339
          && $(MAKE) $(AM_MAKEFLAGS) \
340
          && $(MAKE) $(AM_MAKEFLAGS) dvi \
341
          && $(MAKE) $(AM_MAKEFLAGS) check \
342
          && $(MAKE) $(AM_MAKEFLAGS) install \
343
          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
344
          && $(MAKE) $(AM_MAKEFLAGS) dist
345
        -rm -rf $(distdir)
346
        @banner="$(distdir).tar.gz is ready for distribution"; \
347
        dashes=`echo "$$banner" | sed s/./=/g`; \
348
        echo "$$dashes"; \
349
        echo "$$banner"; \
350
        echo "$$dashes"
351
dist: distdir
352
        -chmod -R a+r $(distdir)
353
        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
354
        -rm -rf $(distdir)
355
dist-all: distdir
356
        -chmod -R a+r $(distdir)
357
        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
358
        -rm -rf $(distdir)
359
distdir: $(DISTFILES)
360
        -rm -rf $(distdir)
361
        mkdir $(distdir)
362
        -chmod 777 $(distdir)
363
        here=`cd $(top_builddir) && pwd`; \
364
        top_distdir=`cd $(distdir) && pwd`; \
365
        distdir=`cd $(distdir) && pwd`; \
366
        cd $(top_srcdir) \
367 18 lampret
          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Makefile
368 7 jrydberg
        @for file in $(DISTFILES); do \
369
          d=$(srcdir); \
370
          if test -d $$d/$$file; then \
371 54 lampret
            cp -pr $$d/$$file $(distdir)/$$file; \
372 7 jrydberg
          else \
373
            test -f $(distdir)/$$file \
374
            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
375
            || cp -p $$d/$$file $(distdir)/$$file || :; \
376
          fi; \
377
        done
378
        for subdir in $(SUBDIRS); do \
379
          if test "$$subdir" = .; then :; else \
380
            test -d $(distdir)/$$subdir \
381
            || mkdir $(distdir)/$$subdir \
382
            || exit 1; \
383
            chmod 777 $(distdir)/$$subdir; \
384
            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
385
              || exit 1; \
386
          fi; \
387
        done
388
 
389
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
390
 
391
-include $(DEP_FILES)
392
 
393
mostlyclean-depend:
394
 
395
clean-depend:
396
 
397
distclean-depend:
398
        -rm -rf .deps
399
 
400
maintainer-clean-depend:
401
 
402
%.o: %.c
403
        @echo '$(COMPILE) -c $<'; \
404
        $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
405
        @-cp .deps/$(*F).pp .deps/$(*F).P; \
406
        tr ' ' '\012' < .deps/$(*F).pp \
407
          | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
408
            >> .deps/$(*F).P; \
409
        rm .deps/$(*F).pp
410
 
411
%.lo: %.c
412
        @echo '$(LTCOMPILE) -c $<'; \
413
        $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
414
        @-sed -e 's/^\([^:]*\)\.o[      ]*:/\1.lo \1.o :/' \
415
          < .deps/$(*F).pp > .deps/$(*F).P; \
416
        tr ' ' '\012' < .deps/$(*F).pp \
417
          | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
418
            >> .deps/$(*F).P; \
419
        rm -f .deps/$(*F).pp
420
info-am:
421
info: info-recursive
422
dvi-am:
423
dvi: dvi-recursive
424
check-am: all-am
425
check: check-recursive
426
installcheck-am:
427
installcheck: installcheck-recursive
428
all-recursive-am: config.h
429
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
430
 
431 241 markom
install-exec-am: install-binPROGRAMS
432 7 jrydberg
install-exec: install-exec-recursive
433
 
434
install-data-am:
435
install-data: install-data-recursive
436
 
437
install-am: all-am
438
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
439
install: install-recursive
440 241 markom
uninstall-am: uninstall-binPROGRAMS
441 7 jrydberg
uninstall: uninstall-recursive
442
all-am: Makefile $(PROGRAMS) config.h
443
all-redirect: all-recursive-am
444
install-strip:
445
        $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
446
installdirs: installdirs-recursive
447
installdirs-am:
448 241 markom
        $(mkinstalldirs)  $(DESTDIR)$(bindir)
449 7 jrydberg
 
450
 
451
mostlyclean-generic:
452
 
453
clean-generic:
454
 
455
distclean-generic:
456
        -rm -f Makefile $(CONFIG_CLEAN_FILES)
457
        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
458
 
459
maintainer-clean-generic:
460 241 markom
mostlyclean-am:  mostlyclean-hdr mostlyclean-binPROGRAMS \
461 7 jrydberg
                mostlyclean-compile mostlyclean-tags mostlyclean-depend \
462
                mostlyclean-generic
463
 
464
mostlyclean: mostlyclean-recursive
465
 
466 241 markom
clean-am:  clean-hdr clean-binPROGRAMS clean-compile clean-tags \
467 7 jrydberg
                clean-depend clean-generic mostlyclean-am
468
 
469
clean: clean-recursive
470
 
471 241 markom
distclean-am:  distclean-hdr distclean-binPROGRAMS distclean-compile \
472 7 jrydberg
                distclean-tags distclean-depend distclean-generic \
473
                clean-am
474
 
475
distclean: distclean-recursive
476
        -rm -f config.status
477
 
478 241 markom
maintainer-clean-am:  maintainer-clean-hdr maintainer-clean-binPROGRAMS \
479 7 jrydberg
                maintainer-clean-compile maintainer-clean-tags \
480
                maintainer-clean-depend maintainer-clean-generic \
481
                distclean-am
482
        @echo "This command is intended for maintainers to use;"
483
        @echo "it deletes files that may require special tools to rebuild."
484
 
485
maintainer-clean: maintainer-clean-recursive
486
        -rm -f config.status
487
 
488
.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
489 241 markom
mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \
490
maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \
491 7 jrydberg
mostlyclean-compile distclean-compile clean-compile \
492
maintainer-clean-compile install-data-recursive \
493
uninstall-data-recursive install-exec-recursive \
494
uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
495
all-recursive check-recursive installcheck-recursive info-recursive \
496
dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
497
maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
498
distclean-tags clean-tags maintainer-clean-tags distdir \
499
mostlyclean-depend distclean-depend clean-depend \
500
maintainer-clean-depend info-am info dvi-am dvi check check-am \
501
installcheck-am installcheck all-recursive-am install-exec-am \
502
install-exec install-data-am install-data install-am install \
503
uninstall-am uninstall all-redirect all-am all installdirs-am \
504
installdirs mostlyclean-generic distclean-generic clean-generic \
505
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
506
 
507
 
508
# Tell versions [3.59,3.63) of GNU make to not export all variables.
509
# Otherwise a system limit (for SysV at least) may be exceeded.
510
.NOEXPORT:

powered by: WebSVN 2.1.0

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