~peter-pearse/ubuntu/natty/guile-1.8/prop001

« back to all changes in this revision

Viewing changes to benchmark-suite/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2009-07-20 19:39:17 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090720193917-s0985l9wxihwoscl
Tags: 1.8.7+1-1ubuntu1
* Merge from Debian unstable, remaining changes: (LP: #401816)
  - Build with -Wno-error.
  - Build with thread support. Some guile-using programs like autogen need it.
  - Add debian/guile-1.8-libs.shlibs: Thread support breaks ABI, bump the soname.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10.1 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 
6
# Inc.
6
7
# This Makefile.in is free software; the Free Software Foundation
7
8
# gives unlimited permission to copy and/or distribute it,
8
9
# with or without modifications, as long as this notice is preserved.
15
16
@SET_MAKE@
16
17
VPATH = @srcdir@
17
18
pkgdatadir = $(datadir)/@PACKAGE@
 
19
pkgincludedir = $(includedir)/@PACKAGE@
18
20
pkglibdir = $(libdir)/@PACKAGE@
19
 
pkgincludedir = $(includedir)/@PACKAGE@
 
21
pkglibexecdir = $(libexecdir)/@PACKAGE@
20
22
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
21
23
install_sh_DATA = $(install_sh) -c -m 644
22
24
install_sh_PROGRAM = $(install_sh) -c
41
43
mkinstalldirs = $(install_sh) -d
42
44
CONFIG_HEADER = $(top_builddir)/config.h
43
45
CONFIG_CLEAN_FILES =
 
46
CONFIG_CLEAN_VPATH_FILES =
44
47
SOURCES =
45
48
DIST_SOURCES =
46
49
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
64
67
DEFS = @DEFS@
65
68
DEPDIR = @DEPDIR@
66
69
DLLTOOL = @DLLTOOL@
67
 
DLPREOPEN = @DLPREOPEN@
68
70
DSYMUTIL = @DSYMUTIL@
69
71
DUMPBIN = @DUMPBIN@
70
72
ECHO_C = @ECHO_C@
257
259
                 benchmarks/if.bm                       \
258
260
                 benchmarks/logand.bm                   \
259
261
                 benchmarks/read.bm                     \
 
262
                 benchmarks/subr.bm                     \
260
263
                 benchmarks/uniform-vector-read.bm
261
264
 
262
265
EXTRA_DIST = guile-benchmark lib.scm $(SCM_BENCHMARKS)  \
269
272
        @for dep in $?; do \
270
273
          case '$(am__configure_deps)' in \
271
274
            *$$dep*) \
272
 
              cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
273
 
                && exit 0; \
 
275
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 
276
                && { if test -f $@; then exit 0; else break; fi; }; \
274
277
              exit 1;; \
275
278
          esac; \
276
279
        done; \
277
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  benchmark-suite/Makefile'; \
278
 
        cd $(top_srcdir) && \
279
 
          $(AUTOMAKE) --gnu  benchmark-suite/Makefile
 
280
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu benchmark-suite/Makefile'; \
 
281
        $(am__cd) $(top_srcdir) && \
 
282
          $(AUTOMAKE) --gnu benchmark-suite/Makefile
280
283
.PRECIOUS: Makefile
281
284
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
282
285
        @case '$?' in \
294
297
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
295
298
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
296
299
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
300
$(am__aclocal_m4_deps):
297
301
 
298
302
mostlyclean-libtool:
299
303
        -rm -f *.lo
323
327
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
324
328
          if test -d $$d/$$file; then \
325
329
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
330
            if test -d "$(distdir)/$$file"; then \
 
331
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
332
            fi; \
326
333
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
327
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
334
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
335
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
328
336
            fi; \
329
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
337
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
330
338
          else \
331
 
            test -f $(distdir)/$$file \
332
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
339
            test -f "$(distdir)/$$file" \
 
340
            || cp -p $$d/$$file "$(distdir)/$$file" \
333
341
            || exit 1; \
334
342
          fi; \
335
343
        done
357
365
 
358
366
distclean-generic:
359
367
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
368
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
360
369
 
361
370
maintainer-clean-generic:
362
371
        @echo "This command is intended for maintainers to use"
375
384
 
376
385
html: html-am
377
386
 
 
387
html-am:
 
388
 
378
389
info: info-am
379
390
 
380
391
info-am:
383
394
 
384
395
install-dvi: install-dvi-am
385
396
 
 
397
install-dvi-am:
 
398
 
386
399
install-exec-am:
387
400
 
388
401
install-html: install-html-am
389
402
 
 
403
install-html-am:
 
404
 
390
405
install-info: install-info-am
391
406
 
 
407
install-info-am:
 
408
 
392
409
install-man:
393
410
 
394
411
install-pdf: install-pdf-am
395
412
 
 
413
install-pdf-am:
 
414
 
396
415
install-ps: install-ps-am
397
416
 
 
417
install-ps-am:
 
418
 
398
419
installcheck-am:
399
420
 
400
421
maintainer-clean: maintainer-clean-am
428
449
        maintainer-clean-generic mostlyclean mostlyclean-generic \
429
450
        mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
430
451
 
 
452
 
431
453
# Tell versions [3.59,3.63) of GNU make to not export all variables.
432
454
# Otherwise a system limit (for SysV at least) may be exceeded.
433
455
.NOEXPORT: