complearn 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. data/AUTHORS +13 -0
  2. data/COPYING +340 -0
  3. data/ChangeLog +0 -0
  4. data/INSTALL +231 -0
  5. data/Makefile +352 -0
  6. data/Makefile.am +76 -0
  7. data/Makefile.in +352 -0
  8. data/NEWS +7 -0
  9. data/README +0 -0
  10. data/aclocal.m4 +104 -0
  11. data/bin/Makefile +209 -0
  12. data/bin/Makefile.am +8 -0
  13. data/bin/Makefile.in +209 -0
  14. data/bin/labeltree +68 -0
  15. data/bin/labeltree.in +68 -0
  16. data/bin/makesvm +70 -0
  17. data/bin/makesvm.in +70 -0
  18. data/bin/maketree +98 -0
  19. data/bin/maketree.in +98 -0
  20. data/bin/ncd +43 -0
  21. data/bin/ncd.in +43 -0
  22. data/bin/ncdmatrix +54 -0
  23. data/bin/ncdmatrix.in +54 -0
  24. data/bin/ncdvector +50 -0
  25. data/bin/ncdvector.in +50 -0
  26. data/complearn-0.6.2.gem +0 -0
  27. data/complearn.gemspec +57 -0
  28. data/config.log +597 -0
  29. data/config.status +1082 -0
  30. data/configure +4922 -0
  31. data/configure.ac +91 -0
  32. data/confstat5FpLBf/config.h +65 -0
  33. data/confstat5FpLBf/subs-1.sed +50 -0
  34. data/confstat5FpLBf/subs-2.sed +13 -0
  35. data/confstat5FpLBf/subs.frag +0 -0
  36. data/confstat5FpLBf/subs.sed +59 -0
  37. data/confstat5FpLBf/undefs.sed +24 -0
  38. data/doc/FAQ.txt +67 -0
  39. data/doc/Makefile +286 -0
  40. data/doc/Makefile.am +11 -0
  41. data/doc/Makefile.in +286 -0
  42. data/doc/devguide.txt +15 -0
  43. data/doc/example.complearnrc +14 -0
  44. data/doc/examples.txt +35 -0
  45. data/doc/man/Makefile +255 -0
  46. data/doc/man/Makefile.am +11 -0
  47. data/doc/man/Makefile.in +255 -0
  48. data/doc/man/complearn.5 +91 -0
  49. data/doc/man/labeltree.1 +35 -0
  50. data/doc/man/makesvm.1 +60 -0
  51. data/doc/man/maketree.1 +58 -0
  52. data/doc/man/ncd.1 +51 -0
  53. data/doc/man/ncdmatrix.1 +40 -0
  54. data/doc/man/ncdvector.1 +42 -0
  55. data/doc/readme.txt +101 -0
  56. data/doc/userguide.txt +46 -0
  57. data/examples/genes/blueWhale.txt +1 -0
  58. data/examples/genes/cat.txt +1 -0
  59. data/examples/genes/chimpanzee.txt +1 -0
  60. data/examples/genes/finWhale.txt +1 -0
  61. data/examples/genes/graySeal.txt +1 -0
  62. data/examples/genes/harborSeal.txt +1 -0
  63. data/examples/genes/horse.txt +1 -0
  64. data/examples/genes/human.txt +1 -0
  65. data/examples/genes/mouse.txt +1 -0
  66. data/examples/genes/rat.txt +1 -0
  67. data/ext/Makefile +167 -0
  68. data/ext/Quartet.c +399 -0
  69. data/ext/Quartet.h +62 -0
  70. data/ext/TreeScore.c +244 -0
  71. data/ext/TreeScore.h +3 -0
  72. data/ext/config.h +65 -0
  73. data/ext/config.h.in +64 -0
  74. data/ext/extconf.rb +3 -0
  75. data/ext/lib/CompLearnLib/CLConfig.rb +241 -0
  76. data/ext/lib/CompLearnLib/CompressionObject.rb +59 -0
  77. data/ext/lib/CompLearnLib/CompressionTask.rb +99 -0
  78. data/ext/lib/CompLearnLib/DistMatrix.rb +18 -0
  79. data/ext/lib/CompLearnLib/FoundComp.rb +10 -0
  80. data/ext/lib/CompLearnLib/FoundComp.rb.in +10 -0
  81. data/ext/lib/CompLearnLib/Ncd.rb +248 -0
  82. data/ext/lib/CompLearnLib/RunEnv.rb +150 -0
  83. data/ext/lib/CompLearnLib/Task.rb +39 -0
  84. data/ext/lib/CompLearnLib/TaskMaster.rb +13 -0
  85. data/ext/lib/CompLearnLib/TaskMasterMPI.rb +112 -0
  86. data/ext/lib/CompLearnLib/TaskMasterSingle.rb +39 -0
  87. data/ext/lib/CompLearnLib/Tree.rb +300 -0
  88. data/install-sh +294 -0
  89. data/missing +336 -0
  90. data/mkinstalldirs +111 -0
  91. data/o +24 -0
  92. data/scripts/CompLearn.iss +89 -0
  93. data/scripts/CompLearn.iss.in +89 -0
  94. data/scripts/debian/changelog +6 -0
  95. data/scripts/debian/control +14 -0
  96. data/scripts/makeSetup.sh +23 -0
  97. data/scripts/makeSetup.sh.in +23 -0
  98. data/scripts/makedeb.zsh +46 -0
  99. data/scripts/makedeb.zsh.in +46 -0
  100. data/tests/alltests.rb +2 -0
  101. data/tests/bz2test.rb +516 -0
  102. data/tests/sshagent-test.rb +48 -0
  103. data/tests/tests.rb +275 -0
  104. metadata +164 -0
data/NEWS ADDED
@@ -0,0 +1,7 @@
1
+ --Thu Oct 23 20:02:25 CEST 2003
2
+ The system has finally managed to compile on both
3
+ Debian and Red Hat Linux, so at this point I'm making
4
+ the first public packaged release, version 0.54
5
+
6
+ Have a Happy Day!
7
+
data/README ADDED
File without changes
@@ -0,0 +1,104 @@
1
+ dnl aclocal.m4 generated automatically by aclocal 1.4-p4
2
+
3
+ dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
4
+ dnl This file is free software; the Free Software Foundation
5
+ dnl gives unlimited permission to copy and/or distribute it,
6
+ dnl with or without modifications, as long as this notice is preserved.
7
+
8
+ dnl This program is distributed in the hope that it will be useful,
9
+ dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10
+ dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11
+ dnl PARTICULAR PURPOSE.
12
+
13
+ # Do all the work for Automake. This macro actually does too much --
14
+ # some checks are only needed if your package does certain things.
15
+ # But this isn't really a big deal.
16
+
17
+ # serial 1
18
+
19
+ dnl Usage:
20
+ dnl AM_INIT_AUTOMAKE(package,version, [no-define])
21
+
22
+ AC_DEFUN(AM_INIT_AUTOMAKE,
23
+ [AC_REQUIRE([AC_PROG_INSTALL])
24
+ PACKAGE=[$1]
25
+ AC_SUBST(PACKAGE)
26
+ VERSION=[$2]
27
+ AC_SUBST(VERSION)
28
+ dnl test to see if srcdir already configured
29
+ if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
30
+ AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
31
+ fi
32
+ ifelse([$3],,
33
+ AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
34
+ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
35
+ AC_REQUIRE([AM_SANITY_CHECK])
36
+ AC_REQUIRE([AC_ARG_PROGRAM])
37
+ dnl FIXME This is truly gross.
38
+ missing_dir=`cd $ac_aux_dir && pwd`
39
+ AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
40
+ AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
41
+ AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
42
+ AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
43
+ AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
44
+ AC_REQUIRE([AC_PROG_MAKE_SET])])
45
+
46
+ #
47
+ # Check to make sure that the build environment is sane.
48
+ #
49
+
50
+ AC_DEFUN(AM_SANITY_CHECK,
51
+ [AC_MSG_CHECKING([whether build environment is sane])
52
+ # Just in case
53
+ sleep 1
54
+ echo timestamp > conftestfile
55
+ # Do `set' in a subshell so we don't clobber the current shell's
56
+ # arguments. Must try -L first in case configure is actually a
57
+ # symlink; some systems play weird games with the mod time of symlinks
58
+ # (eg FreeBSD returns the mod time of the symlink's containing
59
+ # directory).
60
+ if (
61
+ set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
62
+ if test "[$]*" = "X"; then
63
+ # -L didn't work.
64
+ set X `ls -t $srcdir/configure conftestfile`
65
+ fi
66
+ if test "[$]*" != "X $srcdir/configure conftestfile" \
67
+ && test "[$]*" != "X conftestfile $srcdir/configure"; then
68
+
69
+ # If neither matched, then we have a broken ls. This can happen
70
+ # if, for instance, CONFIG_SHELL is bash and it inherits a
71
+ # broken ls alias from the environment. This has actually
72
+ # happened. Such a system could not be considered "sane".
73
+ AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
74
+ alias in your environment])
75
+ fi
76
+
77
+ test "[$]2" = conftestfile
78
+ )
79
+ then
80
+ # Ok.
81
+ :
82
+ else
83
+ AC_MSG_ERROR([newly created file is older than distributed files!
84
+ Check your system clock])
85
+ fi
86
+ rm -f conftest*
87
+ AC_MSG_RESULT(yes)])
88
+
89
+ dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
90
+ dnl The program must properly implement --version.
91
+ AC_DEFUN(AM_MISSING_PROG,
92
+ [AC_MSG_CHECKING(for working $2)
93
+ # Run test in a subshell; some versions of sh will print an error if
94
+ # an executable is not found, even if stderr is redirected.
95
+ # Redirect stdin to placate older versions of autoconf. Sigh.
96
+ if ($2 --version) < /dev/null > /dev/null 2>&1; then
97
+ $1=$2
98
+ AC_MSG_RESULT(found)
99
+ else
100
+ $1="$3/missing $2"
101
+ AC_MSG_RESULT(missing)
102
+ fi
103
+ AC_SUBST($1)])
104
+
@@ -0,0 +1,209 @@
1
+ # Makefile.in generated automatically by automake 1.4-p4 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
+ SHELL = /bin/sh
15
+
16
+ srcdir = .
17
+ top_srcdir = ..
18
+
19
+ prefix = /usr/local
20
+ exec_prefix = ${prefix}
21
+
22
+ bindir = ${exec_prefix}/bin
23
+ sbindir = ${exec_prefix}/sbin
24
+ libexecdir = ${exec_prefix}/libexec
25
+ datadir = ${prefix}/share
26
+ sysconfdir = ${prefix}/etc
27
+ sharedstatedir = ${prefix}/com
28
+ localstatedir = ${prefix}/var
29
+ libdir = ${exec_prefix}/lib
30
+ infodir = ${prefix}/info
31
+ mandir = ${prefix}/man
32
+ includedir = ${prefix}/include
33
+ oldincludedir = /usr/include
34
+
35
+ DESTDIR =
36
+
37
+ pkgdatadir = $(datadir)/complearn
38
+ pkglibdir = $(libdir)/complearn
39
+ pkgincludedir = $(includedir)/complearn
40
+
41
+ top_builddir = ..
42
+
43
+ ACLOCAL = aclocal
44
+ AUTOCONF = autoconf
45
+ AUTOMAKE = automake
46
+ AUTOHEADER = autoheader
47
+
48
+ INSTALL = /usr/bin/install -c
49
+ INSTALL_PROGRAM = ${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS)
50
+ INSTALL_DATA = ${INSTALL} -m 644
51
+ INSTALL_SCRIPT = ${INSTALL}
52
+ transform = s,x,x,
53
+
54
+ NORMAL_INSTALL = :
55
+ PRE_INSTALL = :
56
+ POST_INSTALL = :
57
+ NORMAL_UNINSTALL = :
58
+ PRE_UNINSTALL = :
59
+ POST_UNINSTALL = :
60
+ CC = gcc
61
+ FOUNDBZIP2 = true
62
+ FOUNDGZIP = true
63
+ MAKEINFO = makeinfo
64
+ PACKAGE = complearn
65
+ RANLIB = ranlib
66
+ RUBYBIN = /usr/bin/ruby1.8
67
+ SET_MAKE =
68
+ TOPDIR = /home/cilibrar/src/complearngem/complearn-0.6.2
69
+ VERSION = 0.6.2
70
+ WINBUILDDIR = c:\build
71
+
72
+ bin_SCRIPTS = labeltree makesvm maketree ncd ncdmatrix ncdvector
73
+
74
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
75
+ CONFIG_CLEAN_FILES = ncd ncdvector ncdmatrix labeltree maketree makesvm
76
+ SCRIPTS = $(bin_SCRIPTS)
77
+
78
+ DIST_COMMON = Makefile.am Makefile.in labeltree.in makesvm.in \
79
+ maketree.in ncd.in ncdmatrix.in ncdvector.in
80
+
81
+
82
+ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
83
+
84
+ TAR = tar
85
+ GZIP_ENV = --best
86
+ all: all-redirect
87
+ .SUFFIXES:
88
+ $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
89
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps bin/Makefile
90
+
91
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
92
+ cd $(top_builddir) \
93
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
94
+
95
+ ncd: $(top_builddir)/config.status ncd.in
96
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
97
+ ncdvector: $(top_builddir)/config.status ncdvector.in
98
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
99
+ ncdmatrix: $(top_builddir)/config.status ncdmatrix.in
100
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
101
+ labeltree: $(top_builddir)/config.status labeltree.in
102
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
103
+ maketree: $(top_builddir)/config.status maketree.in
104
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
105
+ makesvm: $(top_builddir)/config.status makesvm.in
106
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
107
+
108
+ install-binSCRIPTS: $(bin_SCRIPTS)
109
+ @$(NORMAL_INSTALL)
110
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
111
+ @list='$(bin_SCRIPTS)'; for p in $$list; do \
112
+ if test -f $$p; then \
113
+ echo " $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
114
+ $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
115
+ else if test -f $(srcdir)/$$p; then \
116
+ echo " $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
117
+ $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
118
+ else :; fi; fi; \
119
+ done
120
+
121
+ uninstall-binSCRIPTS:
122
+ @$(NORMAL_UNINSTALL)
123
+ list='$(bin_SCRIPTS)'; for p in $$list; do \
124
+ rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
125
+ done
126
+ tags: TAGS
127
+ TAGS:
128
+
129
+
130
+ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
131
+
132
+ subdir = bin
133
+
134
+ distdir: $(DISTFILES)
135
+ @for file in $(DISTFILES); do \
136
+ d=$(srcdir); \
137
+ if test -d $$d/$$file; then \
138
+ cp -pr $$d/$$file $(distdir)/$$file; \
139
+ else \
140
+ test -f $(distdir)/$$file \
141
+ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
142
+ || cp -p $$d/$$file $(distdir)/$$file || :; \
143
+ fi; \
144
+ done
145
+ info-am:
146
+ info: info-am
147
+ dvi-am:
148
+ dvi: dvi-am
149
+ check-am: all-am
150
+ check: check-am
151
+ installcheck-am:
152
+ installcheck: installcheck-am
153
+ install-exec-am: install-binSCRIPTS
154
+ install-exec: install-exec-am
155
+
156
+ install-data-am:
157
+ install-data: install-data-am
158
+
159
+ install-am: all-am
160
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
161
+ install: install-am
162
+ uninstall-am: uninstall-binSCRIPTS
163
+ uninstall: uninstall-am
164
+ all-am: Makefile $(SCRIPTS)
165
+ all-redirect: all-am
166
+ install-strip:
167
+ $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
168
+ installdirs:
169
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
170
+
171
+
172
+ mostlyclean-generic:
173
+
174
+ clean-generic:
175
+
176
+ distclean-generic:
177
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
178
+ -rm -f config.cache config.log stamp-h stamp-h[0-9]*
179
+
180
+ maintainer-clean-generic:
181
+ mostlyclean-am: mostlyclean-generic
182
+
183
+ mostlyclean: mostlyclean-am
184
+
185
+ clean-am: clean-generic mostlyclean-am
186
+
187
+ clean: clean-am
188
+
189
+ distclean-am: distclean-generic clean-am
190
+
191
+ distclean: distclean-am
192
+
193
+ maintainer-clean-am: maintainer-clean-generic distclean-am
194
+ @echo "This command is intended for maintainers to use;"
195
+ @echo "it deletes files that may require special tools to rebuild."
196
+
197
+ maintainer-clean: maintainer-clean-am
198
+
199
+ .PHONY: uninstall-binSCRIPTS install-binSCRIPTS tags distdir info-am \
200
+ info dvi-am dvi check check-am installcheck-am installcheck \
201
+ install-exec-am install-exec install-data-am install-data install-am \
202
+ install uninstall-am uninstall all-redirect all-am all installdirs \
203
+ mostlyclean-generic distclean-generic clean-generic \
204
+ maintainer-clean-generic clean mostlyclean distclean maintainer-clean
205
+
206
+
207
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
208
+ # Otherwise a system limit (for SysV at least) may be exceeded.
209
+ .NOEXPORT:
@@ -0,0 +1,8 @@
1
+ bin_SCRIPTS = \
2
+ labeltree \
3
+ makesvm \
4
+ maketree \
5
+ ncd \
6
+ ncdmatrix \
7
+ ncdvector
8
+
@@ -0,0 +1,209 @@
1
+ # Makefile.in generated automatically by automake 1.4-p4 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
+ SHELL = @SHELL@
15
+
16
+ srcdir = @srcdir@
17
+ top_srcdir = @top_srcdir@
18
+ VPATH = @srcdir@
19
+ prefix = @prefix@
20
+ exec_prefix = @exec_prefix@
21
+
22
+ bindir = @bindir@
23
+ sbindir = @sbindir@
24
+ libexecdir = @libexecdir@
25
+ datadir = @datadir@
26
+ sysconfdir = @sysconfdir@
27
+ sharedstatedir = @sharedstatedir@
28
+ localstatedir = @localstatedir@
29
+ libdir = @libdir@
30
+ infodir = @infodir@
31
+ mandir = @mandir@
32
+ includedir = @includedir@
33
+ oldincludedir = /usr/include
34
+
35
+ DESTDIR =
36
+
37
+ pkgdatadir = $(datadir)/@PACKAGE@
38
+ pkglibdir = $(libdir)/@PACKAGE@
39
+ pkgincludedir = $(includedir)/@PACKAGE@
40
+
41
+ top_builddir = ..
42
+
43
+ ACLOCAL = @ACLOCAL@
44
+ AUTOCONF = @AUTOCONF@
45
+ AUTOMAKE = @AUTOMAKE@
46
+ AUTOHEADER = @AUTOHEADER@
47
+
48
+ INSTALL = @INSTALL@
49
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
50
+ INSTALL_DATA = @INSTALL_DATA@
51
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
52
+ transform = @program_transform_name@
53
+
54
+ NORMAL_INSTALL = :
55
+ PRE_INSTALL = :
56
+ POST_INSTALL = :
57
+ NORMAL_UNINSTALL = :
58
+ PRE_UNINSTALL = :
59
+ POST_UNINSTALL = :
60
+ CC = @CC@
61
+ FOUNDBZIP2 = @FOUNDBZIP2@
62
+ FOUNDGZIP = @FOUNDGZIP@
63
+ MAKEINFO = @MAKEINFO@
64
+ PACKAGE = @PACKAGE@
65
+ RANLIB = @RANLIB@
66
+ RUBYBIN = @RUBYBIN@
67
+ SET_MAKE = @SET_MAKE@
68
+ TOPDIR = @TOPDIR@
69
+ VERSION = @VERSION@
70
+ WINBUILDDIR = @WINBUILDDIR@
71
+
72
+ bin_SCRIPTS = labeltree makesvm maketree ncd ncdmatrix ncdvector
73
+
74
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
75
+ CONFIG_CLEAN_FILES = ncd ncdvector ncdmatrix labeltree maketree makesvm
76
+ SCRIPTS = $(bin_SCRIPTS)
77
+
78
+ DIST_COMMON = Makefile.am Makefile.in labeltree.in makesvm.in \
79
+ maketree.in ncd.in ncdmatrix.in ncdvector.in
80
+
81
+
82
+ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
83
+
84
+ TAR = tar
85
+ GZIP_ENV = --best
86
+ all: all-redirect
87
+ .SUFFIXES:
88
+ $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
89
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps bin/Makefile
90
+
91
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
92
+ cd $(top_builddir) \
93
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
94
+
95
+ ncd: $(top_builddir)/config.status ncd.in
96
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
97
+ ncdvector: $(top_builddir)/config.status ncdvector.in
98
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
99
+ ncdmatrix: $(top_builddir)/config.status ncdmatrix.in
100
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
101
+ labeltree: $(top_builddir)/config.status labeltree.in
102
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
103
+ maketree: $(top_builddir)/config.status maketree.in
104
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
105
+ makesvm: $(top_builddir)/config.status makesvm.in
106
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
107
+
108
+ install-binSCRIPTS: $(bin_SCRIPTS)
109
+ @$(NORMAL_INSTALL)
110
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
111
+ @list='$(bin_SCRIPTS)'; for p in $$list; do \
112
+ if test -f $$p; then \
113
+ echo " $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
114
+ $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
115
+ else if test -f $(srcdir)/$$p; then \
116
+ echo " $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
117
+ $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
118
+ else :; fi; fi; \
119
+ done
120
+
121
+ uninstall-binSCRIPTS:
122
+ @$(NORMAL_UNINSTALL)
123
+ list='$(bin_SCRIPTS)'; for p in $$list; do \
124
+ rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
125
+ done
126
+ tags: TAGS
127
+ TAGS:
128
+
129
+
130
+ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
131
+
132
+ subdir = bin
133
+
134
+ distdir: $(DISTFILES)
135
+ @for file in $(DISTFILES); do \
136
+ d=$(srcdir); \
137
+ if test -d $$d/$$file; then \
138
+ cp -pr $$d/$$file $(distdir)/$$file; \
139
+ else \
140
+ test -f $(distdir)/$$file \
141
+ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
142
+ || cp -p $$d/$$file $(distdir)/$$file || :; \
143
+ fi; \
144
+ done
145
+ info-am:
146
+ info: info-am
147
+ dvi-am:
148
+ dvi: dvi-am
149
+ check-am: all-am
150
+ check: check-am
151
+ installcheck-am:
152
+ installcheck: installcheck-am
153
+ install-exec-am: install-binSCRIPTS
154
+ install-exec: install-exec-am
155
+
156
+ install-data-am:
157
+ install-data: install-data-am
158
+
159
+ install-am: all-am
160
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
161
+ install: install-am
162
+ uninstall-am: uninstall-binSCRIPTS
163
+ uninstall: uninstall-am
164
+ all-am: Makefile $(SCRIPTS)
165
+ all-redirect: all-am
166
+ install-strip:
167
+ $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
168
+ installdirs:
169
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
170
+
171
+
172
+ mostlyclean-generic:
173
+
174
+ clean-generic:
175
+
176
+ distclean-generic:
177
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
178
+ -rm -f config.cache config.log stamp-h stamp-h[0-9]*
179
+
180
+ maintainer-clean-generic:
181
+ mostlyclean-am: mostlyclean-generic
182
+
183
+ mostlyclean: mostlyclean-am
184
+
185
+ clean-am: clean-generic mostlyclean-am
186
+
187
+ clean: clean-am
188
+
189
+ distclean-am: distclean-generic clean-am
190
+
191
+ distclean: distclean-am
192
+
193
+ maintainer-clean-am: maintainer-clean-generic distclean-am
194
+ @echo "This command is intended for maintainers to use;"
195
+ @echo "it deletes files that may require special tools to rebuild."
196
+
197
+ maintainer-clean: maintainer-clean-am
198
+
199
+ .PHONY: uninstall-binSCRIPTS install-binSCRIPTS tags distdir info-am \
200
+ info dvi-am dvi check check-am installcheck-am installcheck \
201
+ install-exec-am install-exec install-data-am install-data install-am \
202
+ install uninstall-am uninstall all-redirect all-am all installdirs \
203
+ mostlyclean-generic distclean-generic clean-generic \
204
+ maintainer-clean-generic clean mostlyclean distclean maintainer-clean
205
+
206
+
207
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
208
+ # Otherwise a system limit (for SysV at least) may be exceeded.
209
+ .NOEXPORT:
OSZAR »