diff options
Diffstat (limited to 'aberth/Makefile')
-rw-r--r-- | aberth/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/aberth/Makefile b/aberth/Makefile index 10f36b8..82e3260 100644 --- a/aberth/Makefile +++ b/aberth/Makefile @@ -1,7 +1,12 @@ CXX = g++ CXXFLAGS = -Wall -Wextra -std=c++17 -fwrapv $(OPTFLAGS) OPTFLAGS = -O3 -ffast-math -march=native -mtune=native -LDFLAGS = -pthread -framework OpenCL +LDFLAGS = -pthread +ifeq ($(uname),Darwin) + LDFLAGS += -framework OpenCL +else + LDFLAGS += -lOpenCL +endif TARGETS = aberth |