1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
##
## Copyright (C) 2009-2012 Institute for Computational Biomedicine,
## Weill Medical College of Cornell University
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
##
## Process this file with automake to produce Makefile.in
lib_LTLIBRARIES = libgoby.la
BUILT_SOURCES = goby.timestamp
AM_CXXFLAGS = @PROTOBUF_CFLAGS@ @LIBPCRE2_CFLAGS@ ${BOOST_CPPFLAGS}
AM_CFLAGS = @PROTOBUF_CFLAGS@ @LIBPCRE2_CFLAGS@ ${BOOST_CPPFLAGS}
libgoby_la_LIBADD = @PROTOBUF_LIBS@ @LIBPCRE2_LIBS@
libgoby_la_LDFLAGS = -version-info @version_info@ -export-dynamic # -no-undefined
libgoby_la_SOURCES = \
goby/ICBFileInputStream.cc \
goby/ICBFileInputStream.h \
goby/Alignments.cc \
goby/Alignments.h \
goby/Alignments.pb.cc \
goby/Alignments.pb.h \
goby/common.cc \
goby/MessageChunks.h \
goby/Reads.cc \
goby/Reads.h \
goby/Reads.pb.cc \
goby/Reads.pb.h \
goby/TooManyHits.cc \
goby/TooManyHits.h \
goby/C_Gsnap.cc \
goby/C_Gsnap.h \
goby/C_Gsnap_structs.h \
goby/C_Reads.cc \
goby/C_Reads.h \
goby/C_Alignments.cc \
goby/C_Alignments.h \
goby/C_CompactHelpers.h \
goby/SamFlags.h
nobase_include_HEADERS = \
goby/ICBFileInputStream.h \
goby/Alignments.h \
goby/Alignments.pb.h \
goby/common.h \
goby/hash.h \
goby/MessageChunks.h \
goby/Reads.h \
goby/Reads.pb.h \
goby/TooManyHits.h \
goby/C_Gsnap.h \
goby/C_Gsnap_structs.h \
goby/C_Reads.h \
goby/C_Alignments.h \
goby/C_CompactHelpers.h \
goby/SamFlags.h \
goby/timestamp.h
bin_PROGRAMS = GobyAlignmentStats GobyAlignmentToText GobyReadsStats GobyFastaToCompact C_Sample_CompactReads GsnapParseTest1
GobyAlignmentStats_LDADD = libgoby.la ${BOOST_LDFLAGS} ${BOOST_SYSTEM_LIB} ${BOOST_DATE_TIME_LIB} ${BOOST_FILESYSTEM_LIB}
GobyAlignmentStats_SOURCES = \
GobyAlignmentStats.cc
GobyAlignmentToText_LDADD = libgoby.la ${BOOST_LDFLAGS} ${BOOST_SYSTEM_LIB} ${BOOST_DATE_TIME_LIB} ${BOOST_FILESYSTEM_LIB}
GobyAlignmentToText_SOURCES = \
GobyAlignmentToText.cc
GobyReadsStats_LDADD = libgoby.la ${BOOST_LDFLAGS} ${BOOST_SYSTEM_LIB} ${BOOST_DATE_TIME_LIB} ${BOOST_FILESYSTEM_LIB}
GobyReadsStats_SOURCES = \
GobyReadsStats.cc
GobyFastaToCompact_LDADD = libgoby.la ${BOOST_LDFLAGS} ${BOOST_SYSTEM_LIB} ${BOOST_DATE_TIME_LIB} ${BOOST_FILESYSTEM_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
GobyFastaToCompact_SOURCES = \
GobyFastaToCompact.cc
C_Sample_CompactReads_LDADD = libgoby.la ${BOOST_LDFLAGS} ${BOOST_SYSTEM_LIB} ${BOOST_DATE_TIME_LIB} ${BOOST_FILESYSTEM_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
C_Sample_CompactReads_SOURCES = \
C_Sample_CompactReads.c
GsnapParseTest1_LDADD = libgoby.la ${BOOST_LDFLAGS} ${BOOST_SYSTEM_LIB} ${BOOST_DATE_TIME_LIB} ${BOOST_FILESYSTEM_LIB}
GsnapParseTest1_SOURCES = \
GsnapParseTest1.cc
#
# TODO:
# How to ALWAYS make this file at the top of the build?
# but nothing should "depend" on it, so just the change of this
# file should not trigger other things to build.
#
goby.timestamp:
echo '#define BUILD_TIMESTAMP "'`date "+%G%m%d%k%M%S" | sed 's/ //g'`'"' > goby/timestamp.h
MAINTAINERCLEANFILES = \
Makefile.in \
goby/timestamp.h
CLEANFILES = \
goby/timestamp.h
|