diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-02-06 16:45:46 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-02-06 16:45:46 -0500 |
commit | d6c4a9934943b12caf19fd0024b66a0c889a3bbe (patch) | |
tree | 0c719c296a25ccf8189521342470812a890f926b /Makefile | |
parent | 1c2ce90501d87db6431a7f29a37876d61347aff7 (diff) |
first commit of openmpopenmp
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ VERSION=\"0.0.2\" CC = gcc -CFLAGS = -O3 -s -mtune=native -Wall -DVERSION=$(VERSION) -Wextra +CFLAGS = -O3 -s -mtune=native -Wall -DVERSION=$(VERSION) -Wextra -fopenmp DESTDIR = /usr/local/ @@ -18,7 +18,7 @@ kmer_counts_per_sequence: libkmer.o kmer_counts_per_sequence.c kmer_utils.h clean: rm -vf kmer_total_count kmer_counts_per_sequence libkmer.so libkmer.o -debug: CFLAGS = -ggdb -Wall -Wextra -DVERSION=$(VERSION)\"-debug\" +debug: CFLAGS = -ggdb -Wall -Wextra -DVERSION=$(VERSION)\"-debug\" -fopenmp debug: all install: all |