author | schurig <schurig> | 2003-05-30 12:30:32 (UTC) |
---|---|---|
committer | schurig <schurig> | 2003-05-30 12:30:32 (UTC) |
commit | c5702b8ef047530fcaa56d78a66970879733b113 (patch) (side-by-side diff) | |
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),) QTE_BASEVERSION=2.3.5 endif endif export QTE_BASEVERSION ifeq ($(QTE_VERSION),) ifneq ($(shell ls $(QTDIR)/include/qglobal.h 2>/dev/null),) QTE_VERSION:=$(shell cat $(QTDIR)/include/qglobal.h|grep '^\#define QT_VERSION_STR'|sed -e 's/\#define QT_VERSION_STR\t*//;' -e 's/.*"\([^"]*\)".*/\1/;') else QTE_VERSION=2.3.5 endif endif export QTE_VERSION export PATH:=$(OPIEDIR)/scripts:$(PATH) export QMAKESPEC=$(QMAKESPECSDIR)/$(patsubst "%",%,$(CONFIG_SPECFILE)) ifdef CONFIG_OPTIMIZATIONS export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) endif ifeq ($(STRIP),) ifneq ($(CONFIG_TARGET_X86),) STRIP=strip endif ifneq ($(CONFIG_TARGET_IPAQ),) STRIP=arm-linux-strip endif ifneq ($(CONFIG_TARGET_SHARP),) STRIP=arm-linux-strip endif + ifneq ($(CONFIG_TARGET_RAMSES),) + STRIP=arm-linux-strip + endif endif |