From 50fd8df3aac2fc07638612ea4a511c4e45932819 Mon Sep 17 00:00:00 2001 From: Kevin Keogh Date: Sun, 2 Apr 2017 21:13:55 -0400 Subject: [PATCH] remove dependency on cblas --- Makefile | 2 +- src/black_scholes.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a35ceb3..1dfdcf9 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC=gcc CFLAGS=-Wall -fPIC -O3 -ansi -pedantic-errors -LDFLAGS=-lcblas -lm +LDFLAGS=-lm PREFIX= /usr/local opt-pricer : src/opt-pricer.c gbm.o black_scholes.o utils.o diff --git a/src/black_scholes.c b/src/black_scholes.c index 87d8786..f9634bf 100644 --- a/src/black_scholes.c +++ b/src/black_scholes.c @@ -2,7 +2,6 @@ #include "black_scholes.h" #include "utils.h" -#include #include #include