-rw-r--r-- | qmake/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qmake/Makefile b/qmake/Makefile index 3045766..1054da4 100644 --- a/qmake/Makefile +++ b/qmake/Makefile | |||
@@ -1,7 +1,14 @@ | |||
1 | QMAKESPECSDIR=$(OPIEDIR)/mkspecs | 1 | QMAKESPECSDIR=$(OPIEDIR)/mkspecs |
2 | 2 | ||
3 | include ../.config | ||
4 | |||
5 | ifeq ($(strip $(CONFIG_USE_CCACHE)),y) | ||
3 | CC = $(shell which ccache) gcc | 6 | CC = $(shell which ccache) gcc |
4 | CXX = $(shell which ccache) g++ | 7 | CXX = $(shell which ccache) g++ |
8 | else | ||
9 | CC = gcc | ||
10 | CXX = g++ | ||
11 | endif | ||
5 | 12 | ||
6 | #qmake code | 13 | #qmake code |
7 | OBJS=project.o property.o main.o makefile.o unixmake2.o unixmake.o msvc_nmake.o \ | 14 | OBJS=project.o property.o main.o makefile.o unixmake2.o unixmake.o msvc_nmake.o \ |