forked from TGAC/KAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
41 lines (31 loc) · 833 Bytes
/
Makefile.am
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
# Tells aclocal to put 'aclocal.m4' into the 'm4' directory
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
# Blank man target (used in doc)
man:
cd doc && $(MAKE) $(AM_MAKEFLAGS) man
.PHONY: man
# ADDITIONAL FILES TO INSTALL
EXTRA_DIST = \
README.md \
COPYING \
AUTHORS \
NEWS
# Scripts NOT to install
dist_noinst_SCRIPTS = autogen.sh antigen.sh
# Scripts to install
dist_bin_SCRIPTS = \
scripts/kat_distanalysis.py \
scripts/kat_plot_misc.py \
scripts/kat_plot_colormaps.py \
scripts/kat_plot_density.py \
scripts/kat_plot_profile.py \
scripts/kat_plot_spectra-cn.py \
scripts/kat_plot_spectra-hist.py \
scripts/kat_plot_spectra-mx.py
# SRC DIRS
make_dirs=deps/jellyfish-2.2.0 deps/seqan-library-2.0.0 lib src tests
if MAKE_DOCS
make_dirs += doc
endif
SUBDIRS = $(make_dirs)
AUTOMAKE_OPTIONS = subdir-objects