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

Subversion Repositories or1k

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

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

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

powered by: WebSVN 2.1.0

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