Skip to content

Commit

Permalink
Add the debug option in makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
mourisl committed Dec 18, 2021
1 parent 2f549aa commit 3bece21
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ LINKFLAGS = -lpthread -lz
DEBUG=
OBJECTS = main.o #BaseReads.o Alignment.o

#asan=1
ifneq ($(asan),)
CXXFLAGS+=-fsanitize=address -g
LDFLAGS+=-fsanitize=address -ldl -g
endif

all: trust4 bam-extractor fastq-extractor annotator

trust4: main.o
Expand Down

0 comments on commit 3bece21

Please sign in to comment.