-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathMakefile.dev
More file actions
41 lines (36 loc) · 777 Bytes
/
Makefile.dev
File metadata and controls
41 lines (36 loc) · 777 Bytes
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
#
# Makefile for development
#
PY_SRC_PATH=../compbio
RASMUS_SRC_FILES = \
__init__.py \
hmm.py \
intervals.py \
linked_list.py \
plotting.py \
tablelib.py \
timer.py \
treelib.py \
testing.py \
textdraw.py \
sets.py \
stats.py \
svg.py \
util.py \
COMPBIO_SRC_FILES = \
__init__.py \
alignlib.py \
arglib.py \
birthdeath.py \
coal.py \
fasta.py \
phylo.py \
seqlib.py \
vis/__init__.py \
vis/argvis.py
# copy subset of python modules for packaging with argweaver
includedep:
mkdir -p argweaver/deps
touch argweaver/deps/__init__.py
./setup/cp-deps.py $(PY_SRC_PATH)/rasmus argweaver/deps/rasmus $(RASMUS_SRC_FILES)
./setup/cp-deps.py $(PY_SRC_PATH)/compbio argweaver/deps/compbio $(COMPBIO_SRC_FILES)