diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-19 14:01:35 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-19 14:01:35 -0400 |
commit | 9b07de942f9289dfb494ccff9b8e081090cd8ef1 (patch) | |
tree | 9e7bb4907060113a35e99959a1f1a75d8c52c49e | |
parent | 5f30959142db9370d9aa06021fb5f5a2e26a1b88 (diff) |
add OMP flag
-rw-r--r-- | src/c/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/Makefile b/src/c/Makefile index 0039230..c63c1bc 100644 --- a/src/c/Makefile +++ b/src/c/Makefile @@ -2,7 +2,7 @@ VERSION=\"v1.0.4\" UNAME := $(shell uname) PWD = $(shell pwd) CC = gcc -MULTIFASTA_CFLAGS = -pthread -L../ -I../ -std=gnu99 -fopenmp +MULTIFASTA_CFLAGS = -pthread -L../ -I../ -std=gnu99 -fopenmp -DOMP=1 CFLAGS = -Wall -Wextra -lm -lz -D$(UNAME) -DVERSION=$(VERSION) |