Remove openmp flags.

This commit is contained in:
Shigeru KANEMOTO 2016-01-22 17:28:38 +09:00
parent 277667f185
commit dcf4966293

View File

@ -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 $@