From bd165d9e97c9caec55b4a512e64882296617c041 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Wed, 11 Sep 2013 09:40:36 -0400 Subject: fix binary name, and add -Wextra --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.1