aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2013-09-11 09:40:36 -0400
committerCalvin Morrison <mutantturkey@gmail.com>2013-09-11 09:40:36 -0400
commitbd165d9e97c9caec55b4a512e64882296617c041 (patch)
treed023b4a7a61e332f12d9d5c76e78c70f9bce33db /Makefile
parent5b53a787e4d1cefa5660c891791cd0df4a8fd89c (diff)
fix binary name, and add -Wextra
Diffstat (limited to 'Makefile')
-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)