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
|
SUBDIRS = .
include $(top_srcdir)/Makefile.am.common
#AM_CPPFLAGS = -g -Wall $(DEPS_CFLAGS) -I$(top_srcdir)
#
# If gbtools is in a subdirectory, add it to the include path
#if USE_GBTOOLS
#AM_CPPFLAGS += -I$(top_srcdir)/gbtools/src/include
#endif
# there's a problem on ubuntu 14 with finding X11 so this is a hopefully temporary hack...
#X_LIB = -lX11 -lm
bin_PROGRAMS = belvu
belvu_SOURCES = belvuMain.cpp belvu_.hpp belvu.cpp belvuWindow.hpp belvuWindow.cpp belvuAlignment.hpp belvuAlignment.cpp belvuTree.hpp belvuTree.cpp belvuConsPlot.hpp belvuConsPlot.cpp
belvu_LDADD = $(top_builddir)/seqtoolsUtils/libSeqtoolsUtils.a
# If gbtools is in a subdirectory, add it; otherwise look for a local installation
if USE_GBTOOLS
belvu_LDADD += -L$(top_builddir)/gbtools/.libs -lgbtools
else
belvu_LDADD += -lgbtools
endif
# the gtk deps etc. must go at the end so that gbtools can pick them up
belvu_LDADD += $(DEPS_LIBS) $(X_LIB) -lcurl
# Extra files to remove for the maintainer-clean target.
#
MAINTAINERCLEANFILES = $(top_srcdir)/belvuApp/Makefile.in
|