Changeset 2824
- Timestamp:
- Aug 31, 2012, 9:14:58 AM (11 years ago)
- Location:
- trunk/yat
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/Makefile.am
r2787 r2824 27 27 yat_libyat_la_SOURCES = 28 28 29 # Dummy C++ source to cause C++ linking.30 nodist_EXTRA_yat_libyat_la_SOURCES = dummy.cc31 32 29 yat_libyat_la_LDFLAGS = -version-info $(YAT_LT_VERSION) $(AM_LDFLAGS) 33 30 34 31 yat_libyat_la_LIBADD = \ 35 yat/classifier/libclassifier.la \36 yat/normalizer/libnormalizer.la \37 yat/omic/libomic.la \38 yat/random/librandom.la \39 yat/regression/libregression.la \40 yat/statistics/libstatistics.la \41 yat/utility/libutility.la \42 32 $(YAT_PRIMARY_LIBS) $(LIBM) 43 33 -
trunk/yat/classifier/Makefile
r2749 r2824 18 18 # along with yat. If not, see <http://www.gnu.org/licenses/>. 19 19 20 all:; cd ../.. && $(MAKE) yat/ classifier/libclassifier.la20 all:; cd ../.. && $(MAKE) yat/libyat.la -
trunk/yat/classifier/Makefile.am
r2787 r2824 21 21 # along with yat. If not, see <http://www.gnu.org/licenses/>. 22 22 23 noinst_LTLIBRARIES += yat/classifier/libclassifier.la 24 yat_classifier_libclassifier_la_SOURCES = \ 23 yat_libyat_la_SOURCES += \ 25 24 yat/classifier/BootstrapSampler.cc \ 26 25 yat/classifier/ConsensusInputRanker.cc \ -
trunk/yat/normalizer/Makefile
r2749 r2824 18 18 # along with yat. If not, see <http://www.gnu.org/licenses/>. 19 19 20 all:; cd ../.. && $(MAKE) yat/ normalizer/libnormalizer.la20 all:; cd ../.. && $(MAKE) yat/libyat.la -
trunk/yat/normalizer/Makefile.am
r2787 r2824 21 21 # along with yat. If not, see <http://www.gnu.org/licenses/>. 22 22 23 noinst_LTLIBRARIES += yat/normalizer/libnormalizer.la 24 yat_normalizer_libnormalizer_la_SOURCES = \ 23 yat_libyat_la_SOURCES += \ 25 24 yat/normalizer/qQuantileNormalizer.cc \ 26 25 yat/normalizer/QuantileNormalizer.cc -
trunk/yat/omic/Makefile
r2749 r2824 18 18 # along with yat. If not, see <http://www.gnu.org/licenses/>. 19 19 20 all:; cd ../.. && $(MAKE) yat/ omic/libomic.la20 all:; cd ../.. && $(MAKE) yat/libyat.la -
trunk/yat/omic/Makefile.am
r2787 r2824 20 20 # along with yat. If not, see <http://www.gnu.org/licenses/>. 21 21 22 noinst_LTLIBRARIES += yat/omic/libomic.la 23 yat_omic_libomic_la_SOURCES = 24 yat_omic_libomic_la_SOURCES += yat/omic/Codon.cc 25 yat_omic_libomic_la_SOURCES += yat/omic/DNA.cc 26 yat_omic_libomic_la_SOURCES += yat/omic/GenomicPosition.cc 27 yat_omic_libomic_la_SOURCES += yat/omic/GFF.cc 28 yat_omic_libomic_la_SOURCES += yat/omic/GFF2.cc 29 yat_omic_libomic_la_SOURCES += yat/omic/GFF3.cc 22 yat_libyat_la_SOURCES += yat/omic/Codon.cc 23 yat_libyat_la_SOURCES += yat/omic/DNA.cc 24 yat_libyat_la_SOURCES += yat/omic/GenomicPosition.cc 25 yat_libyat_la_SOURCES += yat/omic/GFF.cc 26 yat_libyat_la_SOURCES += yat/omic/GFF2.cc 27 yat_libyat_la_SOURCES += yat/omic/GFF3.cc 30 28 31 29 nobase_include_HEADERS += $(srcdir)/yat/omic/Codon.h -
trunk/yat/random/Makefile
r2749 r2824 18 18 # along with yat. If not, see <http://www.gnu.org/licenses/>. 19 19 20 all:; cd ../.. && $(MAKE) yat/ random/librandom.la20 all:; cd ../.. && $(MAKE) yat/libyat.la -
trunk/yat/random/Makefile.am
r2787 r2824 22 22 # along with yat. If not, see <http://www.gnu.org/licenses/>. 23 23 24 noinst_LTLIBRARIES += yat/random/librandom.la 25 yat_random_librandom_la_SOURCES = yat/random/random.cc 24 yat_libyat_la_SOURCES += yat/random/random.cc 26 25 27 26 nobase_include_HEADERS += $(srcdir)/yat/random/random.h -
trunk/yat/regression/Makefile
r2749 r2824 18 18 # along with yat. If not, see <http://www.gnu.org/licenses/>. 19 19 20 all:; cd ../.. && $(MAKE) yat/ regression/libregression.la20 all:; cd ../.. && $(MAKE) yat/libyat.la -
trunk/yat/regression/Makefile.am
r2787 r2824 22 22 # along with yat. If not, see <http://www.gnu.org/licenses/>. 23 23 24 noinst_LTLIBRARIES += yat/regression/libregression.la 25 yat_regression_libregression_la_SOURCES = \ 24 yat_libyat_la_SOURCES += \ 26 25 yat/regression/AkimaInterpolation.cc \ 27 26 yat/regression/AkimaPeriodicInterpolation.cc \ -
trunk/yat/statistics/Makefile
r2749 r2824 18 18 # along with yat. If not, see <http://www.gnu.org/licenses/>. 19 19 20 all:; cd ../.. && $(MAKE) yat/ statistics/libstatistics.la20 all:; cd ../.. && $(MAKE) yat/libyat.la -
trunk/yat/statistics/Makefile.am
r2809 r2824 22 22 # along with yat. If not, see <http://www.gnu.org/licenses/>. 23 23 24 noinst_LTLIBRARIES += yat/statistics/libstatistics.la 25 yat_statistics_libstatistics_la_SOURCES = \ 24 yat_libyat_la_SOURCES += \ 26 25 yat/statistics/AUC.cc yat/statistics/Averager.cc \ 27 26 yat/statistics/Averager1.cc \ -
trunk/yat/utility/Makefile
r2749 r2824 18 18 # along with yat. If not, see <http://www.gnu.org/licenses/>. 19 19 20 all:; cd ../.. && $(MAKE) yat/ utility/libutility.la20 all:; cd ../.. && $(MAKE) yat/libyat.la -
trunk/yat/utility/Makefile.am
r2815 r2824 21 21 # along with yat. If not, see <http://www.gnu.org/licenses/>. 22 22 23 noinst_LTLIBRARIES += yat/utility/libutility.la 24 yat_utility_libutility_la_SOURCES = \ 23 yat_libyat_la_SOURCES += \ 25 24 yat/utility/Aligner.cc \ 26 25 yat/utility/Alignment.cc \
Note: See TracChangeset
for help on using the changeset viewer.