diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2013-09-11 09:40:36 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2013-09-11 09:40:36 -0400 |
commit | bd165d9e97c9caec55b4a512e64882296617c041 (patch) | |
tree | d023b4a7a61e332f12d9d5c76e78c70f9bce33db | |
parent | 5b53a787e4d1cefa5660c891791cd0df4a8fd89c (diff) |
fix binary name, and add -Wextra
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |