From dcf4966293c35bd127a5bb1637dbdeb116ab55c3 Mon Sep 17 00:00:00 2001 From: Shigeru KANEMOTO Date: Fri, 22 Jan 2016 17:28:38 +0900 Subject: [PATCH] Remove openmp flags. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b741004..a823a79 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,8 @@ all: gps-sdr-sim SHELL=/bin/bash CC=gcc -CFLAGS=-fopenmp -O3 -Wall -LDFLAGS=-lm -fopenmp +CFLAGS=-O3 -Wall +LDFLAGS=-lm gps-sdr-sim: gpssim.o ${CC} $< ${LDFLAGS} -o $@