diff options
author | Calvin <calvin@EESI> | 2013-05-15 13:43:39 -0400 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-05-15 13:43:39 -0400 |
commit | 07b1eefa80db51e39bea1735b3ff4da0ae79179c (patch) | |
tree | 30f8c2a8daf12303118244367a229c9d28866dfc /src/c/Makefile | |
parent | e3da8e7d38e45af3a7c8be139ff1c28df234841d (diff) |
use zlib natively for sanity, and remove some crap, update makefile with -lzv1.0.0
Diffstat (limited to 'src/c/Makefile')
-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 ba0c799..152121a 100644 --- a/src/c/Makefile +++ b/src/c/Makefile @@ -1,7 +1,7 @@ UNAME := $(shell uname) CC = gcc QUIKR_TRAIN_CFLAGS = -O3 -s -mtune=native -Wall -lm -lz -D$(UNAME) -QUIKR_CFLAGS = -O3 -s -mtune=native -Wextra -Wall -lm -pthread -L../ -I../ -std=gnu99 -fopenmp -D$(UNAME) +QUIKR_CFLAGS = -O3 -s -mtune=native -Wextra -Wall -lm -pthread -L../ -I../ -std=gnu99 -fopenmp -D$(UNAME) -lz all: quikr_train_ quikr_ multifasta_to_otu_ multifasta_to_otu_: |