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

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_67/] [or1ksim/] [Makefile.in] - Blame information for rev 173

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

powered by: WebSVN 2.1.0

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