From 5df6297ce9ff7ceffe0cd44cd4f05411376deaf8 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Thu, 7 Mar 2019 04:11:15 +0100 Subject: removed hardcoded path to clang in Makefiles --- Makefile | 2 +- example/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8b56a23..6b4aed4 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CC = /usr/bin/clang +CC = clang CFLAGS = -Wall -g -std=c++11 -shared -fPIC DEBUGFLAGS = -Wall -g -std=c++11 LDFLAGS = diff --git a/example/Makefile b/example/Makefile index 85d9d5b..c8eed4c 100644 --- a/example/Makefile +++ b/example/Makefile @@ -1,4 +1,4 @@ -CC = /usr/bin/clang +CC = clang CFLAGS = -Wall -g -std=c++11 -lstdc++ LIBDIR = ../build/lib INCDIR = ../build/inc -- cgit v1.2.3