aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/lcc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'code/tools/lcc/Makefile')
-rw-r--r--code/tools/lcc/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/code/tools/lcc/Makefile b/code/tools/lcc/Makefile
index 1a96e9c..86eec1a 100644
--- a/code/tools/lcc/Makefile
+++ b/code/tools/lcc/Makefile
@@ -22,6 +22,19 @@ RMDIR=rmdir
BUILDDIR=build
BD=$(BUILDDIR)/
+ifeq ($(PLATFORM),darwin)
+ LCC_CFLAGS += -DMACOS_X=1
+endif
+
+ifndef USE_CCACHE
+ USE_CCACHE=0
+endif
+
+ifeq ($(USE_CCACHE),1)
+ CC := ccache $(CC)
+ CXX := ccache $(CXX)
+endif
+
ifeq ($(PLATFORM),SunOS)
INSTALL=ginstall
else