~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy-updates

« back to all changes in this revision

Viewing changes to extra/yassl/taocrypt/test/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-02 16:10:53 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070402161053-zkil9hjq9k5p1uzv
Tags: 5.0.37-0ubuntu1
* New upstream bugfix release.
  - Fixes replication failure with auto-increment and on duplicate key
    update, a regression introduced into 5.0.24. (LP: #95821)
* debian/control: Set Ubuntu maintainer.
* debian/rules: Change comments from 'Debian etch' to 'Ubuntu 7.04'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
build_triplet = @build@
38
38
host_triplet = @host@
39
39
target_triplet = @target@
40
 
bin_PROGRAMS = test$(EXEEXT)
 
40
noinst_PROGRAMS = test$(EXEEXT)
41
41
subdir = extra/yassl/taocrypt/test
42
42
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
43
43
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
65
65
mkinstalldirs = $(install_sh) -d
66
66
CONFIG_HEADER = $(top_builddir)/config.h
67
67
CONFIG_CLEAN_FILES =
68
 
am__installdirs = "$(DESTDIR)$(bindir)"
69
 
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
70
 
PROGRAMS = $(bin_PROGRAMS)
 
68
PROGRAMS = $(noinst_PROGRAMS)
71
69
am_test_OBJECTS = test-test.$(OBJEXT)
72
70
test_OBJECTS = $(am_test_OBJECTS)
73
71
test_DEPENDENCIES =  \
196
194
MYSQL_UNIX_ADDR = @MYSQL_UNIX_ADDR@
197
195
MYSQL_VERSION_ID = @MYSQL_VERSION_ID@
198
196
NDB_DEFS = @NDB_DEFS@
 
197
NDB_LD_VERSION_SCRIPT = @NDB_LD_VERSION_SCRIPT@
199
198
NDB_SCI_INCLUDES = @NDB_SCI_INCLUDES@
200
199
NDB_SCI_LIBS = @NDB_SCI_LIBS@
 
200
NDB_SHARED_LIB_MAJOR_VERSION = @NDB_SHARED_LIB_MAJOR_VERSION@
 
201
NDB_SHARED_LIB_VERSION = @NDB_SHARED_LIB_VERSION@
201
202
NDB_SIZEOF_CHAR = @NDB_SIZEOF_CHAR@
202
203
NDB_SIZEOF_CHARP = @NDB_SIZEOF_CHARP@
203
204
NDB_SIZEOF_INT = @NDB_SIZEOF_INT@
383
384
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
384
385
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
385
386
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
386
 
install-binPROGRAMS: $(bin_PROGRAMS)
387
 
        @$(NORMAL_INSTALL)
388
 
        test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
389
 
        @list='$(bin_PROGRAMS)'; for p in $$list; do \
390
 
          p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
391
 
          if test -f $$p \
392
 
             || test -f $$p1 \
393
 
          ; then \
394
 
            f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
395
 
           echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
396
 
           $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
397
 
          else :; fi; \
398
 
        done
399
 
 
400
 
uninstall-binPROGRAMS:
401
 
        @$(NORMAL_UNINSTALL)
402
 
        @list='$(bin_PROGRAMS)'; for p in $$list; do \
403
 
          f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
404
 
          echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
405
 
          rm -f "$(DESTDIR)$(bindir)/$$f"; \
406
 
        done
407
 
 
408
 
clean-binPROGRAMS:
409
 
        @list='$(bin_PROGRAMS)'; for p in $$list; do \
 
387
 
 
388
clean-noinstPROGRAMS:
 
389
        @list='$(noinst_PROGRAMS)'; for p in $$list; do \
410
390
          f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
411
391
          echo " rm -f $$p $$f"; \
412
392
          rm -f $$p $$f ; \
547
527
check: check-am
548
528
all-am: Makefile $(PROGRAMS)
549
529
installdirs:
550
 
        for dir in "$(DESTDIR)$(bindir)"; do \
551
 
          test -z "$$dir" || $(mkdir_p) "$$dir"; \
552
 
        done
553
530
install: install-am
554
531
install-exec: install-exec-am
555
532
install-data: install-data-am
576
553
        @echo "it deletes files that may require special tools to rebuild."
577
554
clean: clean-am
578
555
 
579
 
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
 
556
clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
 
557
        mostlyclean-am
580
558
 
581
559
distclean: distclean-am
582
560
        -rm -rf ./$(DEPDIR)
596
574
 
597
575
install-data-am:
598
576
 
599
 
install-exec-am: install-binPROGRAMS
 
577
install-exec-am:
600
578
 
601
579
install-info: install-info-am
602
580
 
622
600
 
623
601
ps-am:
624
602
 
625
 
uninstall-am: uninstall-binPROGRAMS uninstall-info-am
 
603
uninstall-am: uninstall-info-am
626
604
 
627
 
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
628
 
        clean-generic clean-libtool ctags distclean distclean-compile \
629
 
        distclean-generic distclean-libtool distclean-tags distdir dvi \
630
 
        dvi-am html html-am info info-am install install-am \
631
 
        install-binPROGRAMS install-data install-data-am install-exec \
 
605
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 
606
        clean-libtool clean-noinstPROGRAMS ctags distclean \
 
607
        distclean-compile distclean-generic distclean-libtool \
 
608
        distclean-tags distdir dvi dvi-am html html-am info info-am \
 
609
        install install-am install-data install-data-am install-exec \
632
610
        install-exec-am install-info install-info-am install-man \
633
611
        install-strip installcheck installcheck-am installdirs \
634
612
        maintainer-clean maintainer-clean-generic mostlyclean \
635
613
        mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
636
614
        pdf pdf-am ps ps-am tags uninstall uninstall-am \
637
 
        uninstall-binPROGRAMS uninstall-info-am
638
 
 
 
615
        uninstall-info-am
 
616
 
 
617
 
 
618
# Don't update the files from bitkeeper
 
619
%::SCCS/s.%
639
620
# Tell versions [3.59,3.63) of GNU make to not export all variables.
640
621
# Otherwise a system limit (for SysV at least) may be exceeded.
641
622
.NOEXPORT: