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
|
lib_LTLIBRARIES = libgclib.la
libgclibdir=$(includedir)
libgclib_HEADERS= *.h *.hh
libgclib_la_SOURCES = codons.cpp \
GAlnExtend.cpp \
GapAssem.cpp \
GArgs.cpp \
GBase.cpp \
gcdb.cpp \
GCdbYank.cpp \
gdna.cpp \
GFaSeqGet.cpp \
GFastaIndex.cpp \
gff.cpp \
gsocket.cpp \
gstopwatch.cpp \
GStr.cpp \
GThreads.cpp
# gdimg.cpp # Not build by upstream Makefile
# # Would introduce unneeded dependency from libgd-dev
# GBam.cpp # is not build by upstream Makefile
# # Would need bam.h / sam.h
# gtest.cpp # Seems to be just a test (FIXME: create autopkgtest from it)
libgclib_la_LDFLAGS = -version-info @LIB_VERSION@ -lpthread
libgclib_la_CPPFLAGS = $(INCLUDES)
pkgconfigdir=$(libdir)/pkgconfig
pkgconfig_DATA = libgclib.pc
# FIXME: Build mdtest to properly test the lib. The code below does not work
mdtest_SOURCES = mdtest.cpp libgclib.a
mdtest_LDADD = libgclib.la
bin_PROGRAMS = mdtest
|