-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
78 lines (60 loc) · 1.96 KB
/
Makefile
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# NOTE: needs boost, tclap, and sdsl
CXX=clang++ # g++
CPP_FLAGS=-m64 -std=c++0x -pedantic-errors -W -Wall -Wextra -Wshadow -Wpointer-arith -Wcast-qual \
-Wunused -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings \
-Wbool-conversions -Wshift-overflow -Wliteral-conversion \
-Werror
DEP_PATH=/usr/local
INC_PATH=$(DEP_PATH)/include
LIB_PATH=$(DEP_PATH)/lib
DEP_FLAGS=-I$(INC_PATH)/ -L$(LIB_PATH)/ -lsdsl # -ldivsufsort -ldivsufsort64
DEBUG_FLAGS=-g
NDEBUG_FLAGS=-DNDEBUG
OPT_FLAGS=-O3 -mmmx -msse -msse2 -msse3 -msse4 -msse4.2 -march=native
NOPT_FLAGS=-O0
# Using Semantic Versioning: http://semver.org/
VERSION=0.5.1
CPP_FLAGS+=-DVERSION=\"$(VERSION)\"
ifeq ($(optimise),0)
CPP_FLAGS+=$(NOPT_FLAGS)
else
CPP_FLAGS+=$(OPT_FLAGS)
endif
ifeq ($(debug),1)
CPP_FLAGS+=$(DEBUG_FLAGS)
else
CPP_FLAGS+=$(NDEBUG_FLAGS)
endif
ifeq ($(verbose),1)
CPP_FLAGS+=-DVERBOSE
endif
ifneq ($(revcomps),0)
CPP_FLAGS+=-DADD_REVCOMPS
endif
ifneq ($(dummies),0)
CPP_FLAGS+=-DALL_DUMMIES
endif
ifeq ($(varord),1)
CPP_FLAGS+=-DVAR_ORDER
endif
BUILD_REQS=debruijn_graph.hpp io.hpp io.o debug.h
ASSEM_REQS=debruijn_graph.hpp algorithm.hpp utility.hpp kmer.hpp uint128_t.hpp
PACK_REQS=lut.hpp debug.h io.hpp io.o sort.hpp kmer.hpp dummies.hpp
BINARIES=cosmo-pack cosmo-build cosmo-benchmark # cosmo-assemble
default: all
lut.hpp: make_lut.py
python make_lut.py > lut.hpp
io.o: io.hpp io.cpp debug.h dummies.hpp kmer.hpp
$(CXX) $(CPP_FLAGS) -c io.cpp
# TODO: Roll these all into one... "cosmo"
cosmo-pack: cosmo-pack.cpp $(PACK_REQS)
$(CXX) $(CPP_FLAGS) -o $@ $< io.o
cosmo-build: cosmo-build.cpp $(BUILD_REQS)
$(CXX) $(CPP_FLAGS) -o $@ $< io.o $(DEP_FLAGS)
#cosmo-assemble: cosmo-assemble.cpp $(ASSEM_REQS) wt_algorithm.hpp debruijn_hypergraph.hpp
# $(CXX) $(CPP_FLAGS) -o $@ $< $(DEP_FLAGS)
cosmo-benchmark: cosmo-benchmark.cpp $(ASSEM_REQS) wt_algorithm.hpp debruijn_hypergraph.hpp
$(CXX) $(CPP_FLAGS) -o $@ $< $(DEP_FLAGS)
all: $(BINARIES)
clean:
rm -rf $(BINARIES) *.o *.dSYM