1 | ifeq "$(SOURCE_PATH)" ""
|
---|
2 | SOURCE_PATH = ..
|
---|
3 | endif
|
---|
4 |
|
---|
5 | # CMD.EXE version
|
---|
6 |
|
---|
7 | ifeq "$(BUILD_PATH)" ""
|
---|
8 | BUILD_PATH = ..
|
---|
9 | endif
|
---|
10 |
|
---|
11 | #
|
---|
12 | # specific stuff for GNU make
|
---|
13 | #
|
---|
14 | CXX = g++
|
---|
15 | CFLAGS = -c -o$@ -O -s -Zomf \
|
---|
16 | -I. -Igenerators -Igenerators/unix \
|
---|
17 | -Igenerators/win32 -Igenerators/os2 -Igenerators/mac \
|
---|
18 | -I$(BUILD_PATH)/include -I$(BUILD_PATH)/include/QtCore \
|
---|
19 | -I$(SOURCE_PATH)/include -I$(SOURCE_PATH)/include/QtCore \
|
---|
20 | -I$(BUILD_PATH)/src/corelib/global \
|
---|
21 | -I$(BUILD_PATH)/include/QtScript \
|
---|
22 | -I$(SOURCE_PATH)/mkspecs/os2-g++ \
|
---|
23 | -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_LITE_COMPONENT -DQT_NO_PCRE \
|
---|
24 | -DQT_NODLL -DQT_NO_STL -DQT_NO_COMPRESS -DHAVE_QCONFIG_CPP \
|
---|
|
---|