author | schurig <schurig> | 2003-05-30 12:30:32 (UTC) |
---|---|---|
committer | schurig <schurig> | 2003-05-30 12:30:32 (UTC) |
commit | c5702b8ef047530fcaa56d78a66970879733b113 (patch) (unidiff) | |
tree | 890ffb692e846c3daa03eaabc391b1734abf8b0b /Vars.make | |
parent | 22fff7051b1960f4ae751621c8f52e0fc732033d (diff) | |
download | opie-c5702b8ef047530fcaa56d78a66970879733b113.zip opie-c5702b8ef047530fcaa56d78a66970879733b113.tar.gz opie-c5702b8ef047530fcaa56d78a66970879733b113.tar.bz2 |
initial support for Ramses
-rw-r--r-- | Vars.make | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -53,33 +53,36 @@ ifeq ($(QTE_BASEVERSION),) | |||
53 | QTE_BASEVERSION=2.3.5 | 53 | QTE_BASEVERSION=2.3.5 |
54 | endif | 54 | endif |
55 | endif | 55 | endif |
56 | export QTE_BASEVERSION | 56 | export QTE_BASEVERSION |
57 | 57 | ||
58 | ifeq ($(QTE_VERSION),) | 58 | ifeq ($(QTE_VERSION),) |
59 | ifneq ($(shell ls $(QTDIR)/include/qglobal.h 2>/dev/null),) | 59 | ifneq ($(shell ls $(QTDIR)/include/qglobal.h 2>/dev/null),) |
60 | QTE_VERSION:=$(shell cat $(QTDIR)/include/qglobal.h|grep '^\#define QT_VERSION_STR'|sed -e 's/\#define QT_VERSION_STR\t*//;' -e 's/.*"\([^"]*\)".*/\1/;') | 60 | QTE_VERSION:=$(shell cat $(QTDIR)/include/qglobal.h|grep '^\#define QT_VERSION_STR'|sed -e 's/\#define QT_VERSION_STR\t*//;' -e 's/.*"\([^"]*\)".*/\1/;') |
61 | else | 61 | else |
62 | QTE_VERSION=2.3.5 | 62 | QTE_VERSION=2.3.5 |
63 | endif | 63 | endif |
64 | endif | 64 | endif |
65 | export QTE_VERSION | 65 | export QTE_VERSION |
66 | 66 | ||
67 | export PATH:=$(OPIEDIR)/scripts:$(PATH) | 67 | export PATH:=$(OPIEDIR)/scripts:$(PATH) |
68 | export QMAKESPEC=$(QMAKESPECSDIR)/$(patsubst "%",%,$(CONFIG_SPECFILE)) | 68 | export QMAKESPEC=$(QMAKESPECSDIR)/$(patsubst "%",%,$(CONFIG_SPECFILE)) |
69 | 69 | ||
70 | ifdef CONFIG_OPTIMIZATIONS | 70 | ifdef CONFIG_OPTIMIZATIONS |
71 | export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) | 71 | export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) |
72 | export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) | 72 | export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) |
73 | endif | 73 | endif |
74 | 74 | ||
75 | ifeq ($(STRIP),) | 75 | ifeq ($(STRIP),) |
76 | ifneq ($(CONFIG_TARGET_X86),) | 76 | ifneq ($(CONFIG_TARGET_X86),) |
77 | STRIP=strip | 77 | STRIP=strip |
78 | endif | 78 | endif |
79 | ifneq ($(CONFIG_TARGET_IPAQ),) | 79 | ifneq ($(CONFIG_TARGET_IPAQ),) |
80 | STRIP=arm-linux-strip | 80 | STRIP=arm-linux-strip |
81 | endif | 81 | endif |
82 | ifneq ($(CONFIG_TARGET_SHARP),) | 82 | ifneq ($(CONFIG_TARGET_SHARP),) |
83 | STRIP=arm-linux-strip | 83 | STRIP=arm-linux-strip |
84 | endif | 84 | endif |
85 | ifneq ($(CONFIG_TARGET_RAMSES),) | ||
86 | STRIP=arm-linux-strip | ||
87 | endif | ||
85 | endif | 88 | endif |