From 8eb859c6bcbe8a73b09b6b6f228d82d9e2d58c43 Mon Sep 17 00:00:00 2001 From: tobiasrausch Date: Thu, 14 Jun 2018 12:34:58 +0200 Subject: [PATCH] bug fix --- .gitignore | 1 + Makefile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9ee5488..ad3d8e7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ .htslib bin/ src/tracy +src/sdslLite/ *~ # Prerequisites diff --git a/Makefile b/Makefile index b6bf889..4a1af89 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ endif # External sources SDSLSOURCES = $(wildcard src/sdsl/lib/*.cpp) -IDXSOURCES = $(wildcard src/*.cpp) $(wildcard src/*.h) +TRACYSOURCES = $(wildcard src/*.cpp) $(wildcard src/*.h) HTSLIBSOURCES = $(wildcard src/htslib/*.c) $(wildcard src/htslib/*.h) PBASE=$(shell pwd) @@ -49,7 +49,7 @@ all: $(TARGETS) .htslib: $(HTSLIBSOURCES) cd src/htslib && make && make lib-static && cd ../../ && touch .htslib -src/idxgen: .sdsl .htslib ${IDXSOURCES} +src/tracy: .sdsl .htslib ${TRACYSOURCES} $(CXX) $(CXXFLAGS) $@.cpp -o $@ $(LDFLAGS) install: ${BUILT_PROGRAMS}