aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2019-03-07 04:11:15 +0100
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2019-03-07 04:11:15 +0100
commit5df6297ce9ff7ceffe0cd44cd4f05411376deaf8 (patch)
treeb989a4b30643c4b9aebf19b3281f5bc4d4b744d8
parent1f7db9d6326019ead41e48e48a8f692a090c8755 (diff)
downloadtermgl-5df6297ce9ff7ceffe0cd44cd4f05411376deaf8.tar.gz
removed hardcoded path to clang in Makefiles
-rw-r--r--Makefile2
-rw-r--r--example/Makefile2
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