summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEthan Roseman <ethteck@gmail.com>2021-03-18 16:33:54 +0900
committerEthan Roseman <ethteck@gmail.com>2021-03-18 16:33:54 +0900
commit4d0d6cf32e194c03ad7755bc34a68f05cf189f6b (patch)
tree64e6a4503fb880f2508956d7bf53035478421fa3 /Makefile
parent794d9d5a91e338fe2fb4f005596b1ffe7cc9eca6 (diff)
Depend on system ccache setup
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 4293459..bfa0483 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,5 @@
CC := g++
-ifneq (, $(shell which ccache))
-CC := ccache $(CC)
-endif
-
CFLAGS := -g -std=c++17 -I ZAPD -I lib/assimp/include -I lib/elfio -I lib/json/include -I lib/stb -I lib/tinygltf -I lib/tinyxml2 -O2 -rdynamic
UNAME := $(shell uname)