aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index df96037..ddebaf8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
VERSION=\"v0.0.1\"
CC = gcc
-CFLAGS = -O3 -s -mtune=native -Wall -lm -DVERSION=$(VERSION)
+CFLAGS = -O3 -s -mtune=native -Wall -lm -DVERSION=$(VERSION) -Wextra
all: kmer_total_count kmer_frequency_per_sequence
kmer_total_count:
- $(CC) kmer_total_count.c kmer_utils.c -o kmer_count_total $(CFLAGS)
+ $(CC) kmer_total_count.c kmer_utils.c -o kmer_total_count $(CFLAGS)
kmer_frequency_per_sequence:
$(CC) kmer_frequency_per_sequence.c kmer_utils.c -o kmer_frequency_per_sequence $(CFLAGS)