aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-05-22 17:42:39 +0200
committerCharles <sircharlesaze@gmail.com>2020-05-22 17:42:39 +0200
commit9ab34fff22bb2d6ebedefc702f7ec6c55937e175 (patch)
tree311aae03ddf5ac62cb1c0b678eda954a7fa5f15a /Makefile
parent6d4c3864e3b742a92e9874f1e4dfe3a9c1565188 (diff)
downloadmandelbrot_cpu-master.tar.gz
mandelbrot_cpu-master.tar.bz2
mandelbrot_cpu-master.zip
AVX draftHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5ee5d60..27c551e 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ OBJ_DIR = obj
CC = gcc
OFLAG = -Ofast -funroll-loops -ffast-math
-CCFLAGS = -I$(INC_DIR) -Wall -Wextra $(OFLAG)
+CCFLAGS = -I$(INC_DIR) -Wall -Wextra $(OFLAG) -mavx
LDFLAGS = -lm -lpthread \
$(shell pkg-config --libs --cflags sdl2 SDL2_ttf)