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

Subversion Repositories or1k

[/] [or1k/] [tags/] [stable_0_2_0_rc3/] [or1ksim/] [Makefile.in] - Blame information for rev 646

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

powered by: WebSVN 2.1.0

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