-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
64 lines (41 loc) · 1.56 KB
/
Makefile.am
File metadata and controls
64 lines (41 loc) · 1.56 KB
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
SUBDIRS = src
ACLOCAL_AMFLAGS = -I m4
lib_LTLIBRARIES = libgbtools.la
libgbtools_la_SOURCES =
libgbtools_la_LIBADD = src/gbtoolsGUI/libgbtoolsGUI.la src/gbtoolsUtils/libgbtoolsUtils.la
if USE_BLATSRC
libgbtools_la_LIBADD += src/blatSrc/libblatSrc.la
endif
libgbtools_la_LIBADD += src/jsoncpp/libjsoncpp.la
if USE_LIBCURL
libgbtools_la_LIBADD += src/gbtoolsCurl/libgbtoolsCurl.la src/gbtoolsPfetch/libgbtoolsPfetch.la
libgbtools_la_LIBADD += src/gbtoolsTrackhub/libgbtoolsTrackhub.la
endif
libgbtools_CXXFLAGS = -std=c++0x -g -Wall
# keep libtool up to date automatically.
LIBTOOL_DEPS = @LIBTOOL_DEPS@
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status libtool
# I picked this up from the internet...doesn't seem to work for the very
# last invocation of libtool which produces the .la file, not sure if
# this actually matters or not...
#
# This forces automake to use the C++ linker
# (see the automake manual, section "Libtool Convenience Libraries")
#nodist_EXTRA_libexample_la_SOURCES = dummy.cpp
#sourcescheck_DUMMY = dummy.cpp
# Extra files to remove for the maintainer-clean target.
# Note you cannot use this target to remove directories,
# hence the extra "local" target.
#
MAINTAINERCLEANFILES = \
$(top_srcdir)/Makefile.in \
$(top_srcdir)/aclocal.m4 \
$(top_srcdir)/config.h.in \
$(top_srcdir)/config.h.in~ \
$(top_srcdir)/configure \
$(top_srcdir)/gbtools_version.m4
GENERATED_DIRS = $(top_srcdir)/config $(top_srcdir)/m4 $(top_srcdir)/.deps $(top_srcdir)/build/src
maintainer-clean-local:
rm -rf $(GENERATED_DIRS)
mkdir $(top_srcdir)/m4 $(top_srcdir)/config