103 files changed, 1088 insertions, 1055 deletions
@@ -2,35 +2,35 @@ | |||
2 | # | 2 | # |
3 | # Configures to build the Qtopia Environment | 3 | # Configures to build the Qtopia Environment |
4 | # | 4 | # |
5 | # Copyright 1999-2000 Trolltech AS. All rights reserved. | 5 | # Copyright 1999-2000 Trolltech AS. All rights reserved. |
6 | # | 6 | # |
7 | 7 | ||
8 | PLATFORM=linux-generic-g++ | 8 | PLATFORM=linux-generic-g++ |
9 | SHARING=shared | 9 | SHARING=shared |
10 | DEBUG= | 10 | DEBUG= |
11 | QCONFIGARG= | 11 | QCONFIGARG= |
12 | 12 | ||
13 | touch .test.qpe. | 13 | touch .test.qpe. |
14 | if [ '!' -f ${QPEDIR}/.test.qpe. ]; | 14 | if [ '!' -f ${OPIEDIR}/.test.qpe. ]; |
15 | then | 15 | then |
16 | rm .test.qpe. | 16 | rm .test.qpe. |
17 | echo | 17 | echo |
18 | echo | 18 | echo |
19 | echo ' The environment variable $QPEDIR is not set correctly. It is currently' | 19 | echo ' The environment variable $OPIEDIR is not set correctly. It is currently' |
20 | echo ' set to "'$QPEDIR'", but it should be set to this directory,' | 20 | echo ' set to "'$OPIEDIR'", but it should be set to this directory,' |
21 | echo ' which is "'`pwd`'".' | 21 | echo ' which is "'`pwd`'".' |
22 | echo | 22 | echo |
23 | echo ' Please read the INSTALL file for instructions on how to set $QPEDIR' | 23 | echo ' Please read the INSTALL file for instructions on how to set $OPIEDIR' |
24 | echo ' correctly. If you have set $QPEDIR in your .profile or .login, you ' | 24 | echo ' correctly. If you have set $OPIEDIR in your .profile or .login, you ' |
25 | echo ' will need to log out and log in again to make the setting effective.' | 25 | echo ' will need to log out and log in again to make the setting effective.' |
26 | echo | 26 | echo |
27 | echo | 27 | echo |
28 | exit 1 | 28 | exit 1 |
29 | fi | 29 | fi |
30 | rm .test.qpe. | 30 | rm .test.qpe. |
31 | 31 | ||
32 | mkdir -p include/qpe | 32 | mkdir -p include/qpe |
33 | ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) | 33 | ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) |
34 | 34 | ||
35 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\.[0-9]*\.[0-9]*.*".*/\1/p' <include/qpe/version.h) | 35 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\.[0-9]*\.[0-9]*.*".*/\1/p' <include/qpe/version.h) |
36 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.\([0-9]\)\.[0-9]*.*".*/\1/p' <include/qpe/version.h) | 36 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.\([0-9]\)\.[0-9]*.*".*/\1/p' <include/qpe/version.h) |
@@ -145,25 +145,25 @@ fi | |||
145 | for a in $TOMAKE ; do | 145 | for a in $TOMAKE ; do |
146 | N=$a/Makefile | 146 | N=$a/Makefile |
147 | M=$a/Makefile.in | 147 | M=$a/Makefile.in |
148 | O=$a/Makefile.add | 148 | O=$a/Makefile.add |
149 | f=`basename $a` | 149 | f=`basename $a` |
150 | 150 | ||
151 | if [ -f $TMAKEPATH/tmake.conf -a -f $a/$f.pro ] | 151 | if [ -f $TMAKEPATH/tmake.conf -a -f $a/$f.pro ] |
152 | then | 152 | then |
153 | ( cd $a; | 153 | ( cd $a; |
154 | TMAKEPATH=$QTDIR/tmake:$TMAKEPATH \ | 154 | TMAKEPATH=$QTDIR/tmake:$TMAKEPATH \ |
155 | tmake $QCONFIGARG CONFIG+=embedded $VCONFIG \ | 155 | tmake $QCONFIGARG CONFIG+=embedded $VCONFIG \ |
156 | -t $H/qt/tmake/propagate.t $f.pro | | 156 | -t $H/qt/tmake/propagate.t $f.pro | |
157 | sed -e "s|$QTDIR|\$(QTDIR)|g" -e "s|$QPEDIR|\$(QPEDIR)|g" >Makefile.in; | 157 | sed -e "s|$QTDIR|\$(QTDIR)|g" -e "s|$OPIEDIR|\$(OPIEDIR)|g" >Makefile.in; |
158 | ) | 158 | ) |
159 | echo -n "." | 159 | echo -n "." |
160 | appname=`grep '^TARGET' $a/$f.pro | sed 's/^TARGET.*=//' | sed 's/ //g'` | 160 | appname=`grep '^TARGET' $a/$f.pro | sed 's/^TARGET.*=//' | sed 's/ //g'` |
161 | translation=`grep '^TRANSLATION' $a/$f.pro | sed 's,^TRANSL.*=.*i18n\/.*\/,,' | sed 's/ //g' | sed 's,\.ts.*,,' | sed 's,^lib,,' ` | 161 | translation=`grep '^TRANSLATION' $a/$f.pro | sed 's,^TRANSL.*=.*i18n\/.*\/,,' | sed 's/ //g' | sed 's,\.ts.*,,' | sed 's,^lib,,' ` |
162 | if [ -n "$translation" -a -n "$appname" ] | 162 | if [ -n "$translation" -a -n "$appname" ] |
163 | then | 163 | then |
164 | if [ $appname != $translation ] | 164 | if [ $appname != $translation ] |
165 | then | 165 | then |
166 | echo | 166 | echo |
167 | echo "Warning: translation and appname disagree in $a/$f.pro" | 167 | echo "Warning: translation and appname disagree in $a/$f.pro" |
168 | fi | 168 | fi |
169 | fi | 169 | fi |
diff --git a/core/applets/batteryapplet/Makefile.in b/core/applets/batteryapplet/Makefile.in index 0493fd6..ccf997b 100644 --- a/core/applets/batteryapplet/Makefile.in +++ b/core/applets/batteryapplet/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/applets/ | 17 | DESTDIR = ../../plugins/applets/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= batteryapplet | 21 | TARGET= batteryapplet |
diff --git a/core/applets/batteryapplet/batteryapplet.pro b/core/applets/batteryapplet/batteryapplet.pro index fa0fca8..dcb606d 100644 --- a/core/applets/batteryapplet/batteryapplet.pro +++ b/core/applets/batteryapplet/batteryapplet.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= battery.h batterystatus.h batteryappletimpl.h | 3 | HEADERS= battery.h batterystatus.h batteryappletimpl.h |
4 | SOURCES= battery.cpp batterystatus.cpp batteryappletimpl.cpp | 4 | SOURCES= battery.cpp batterystatus.cpp batteryappletimpl.cpp |
5 | TARGET = batteryapplet | 5 | TARGET = batteryapplet |
6 | DESTDIR = ../../plugins/applets | 6 | DESTDIR = ../../plugins/applets |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(QPEDIR)/include .. | 8 | DEPENDPATH += ../$(OPIEDIR)/include .. |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS += ../../i18n/de/libbatteryapplet.ts | 12 | TRANSLATIONS += ../../i18n/de/libbatteryapplet.ts |
diff --git a/core/applets/clipboardapplet/clipboardapplet.pro b/core/applets/clipboardapplet/clipboardapplet.pro index b0624ef..9832984 100644 --- a/core/applets/clipboardapplet/clipboardapplet.pro +++ b/core/applets/clipboardapplet/clipboardapplet.pro | |||
@@ -1,10 +1,10 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= clipboard.h clipboardappletimpl.h | 3 | HEADERS= clipboard.h clipboardappletimpl.h |
4 | SOURCES= clipboard.cpp clipboardappletimpl.cpp | 4 | SOURCES= clipboard.cpp clipboardappletimpl.cpp |
5 | TARGET = clipboardapplet | 5 | TARGET = clipboardapplet |
6 | DESTDIR = ../../plugins/applets | 6 | DESTDIR = ../../plugins/applets |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(QPEDIR)/include | 8 | DEPENDPATH += ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
diff --git a/core/applets/clockapplet/Makefile.in b/core/applets/clockapplet/Makefile.in index fcf737e..742f25f 100644 --- a/core/applets/clockapplet/Makefile.in +++ b/core/applets/clockapplet/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/applets/ | 17 | DESTDIR = ../../plugins/applets/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= clockapplet | 21 | TARGET= clockapplet |
diff --git a/core/applets/clockapplet/clockapplet.pro b/core/applets/clockapplet/clockapplet.pro index 29a4e8b..1392680 100644 --- a/core/applets/clockapplet/clockapplet.pro +++ b/core/applets/clockapplet/clockapplet.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= clock.h clockappletimpl.h | 3 | HEADERS= clock.h clockappletimpl.h |
4 | SOURCES= clock.cpp clockappletimpl.cpp | 4 | SOURCES= clock.cpp clockappletimpl.cpp |
5 | TARGET = clockapplet | 5 | TARGET = clockapplet |
6 | DESTDIR = ../../plugins/applets | 6 | DESTDIR = ../../plugins/applets |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(QPEDIR)/include .. | 8 | DEPENDPATH += ../$(OPIEDIR)/include .. |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS += ../../i18n/de/libclockapplet.ts | 12 | TRANSLATIONS += ../../i18n/de/libclockapplet.ts |
diff --git a/core/applets/volumeapplet/Makefile.in b/core/applets/volumeapplet/Makefile.in index 7020cb7..49acf38 100644 --- a/core/applets/volumeapplet/Makefile.in +++ b/core/applets/volumeapplet/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/applets/ | 17 | DESTDIR = ../../plugins/applets/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= volumeapplet | 21 | TARGET= volumeapplet |
diff --git a/core/applets/volumeapplet/volumeapplet.pro b/core/applets/volumeapplet/volumeapplet.pro index a33cf81..fedaed7 100644 --- a/core/applets/volumeapplet/volumeapplet.pro +++ b/core/applets/volumeapplet/volumeapplet.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= volume.h volumeappletimpl.h | 3 | HEADERS= volume.h volumeappletimpl.h |
4 | SOURCES= volume.cpp volumeappletimpl.cpp | 4 | SOURCES= volume.cpp volumeappletimpl.cpp |
5 | TARGET = volumeapplet | 5 | TARGET = volumeapplet |
6 | DESTDIR = ../../plugins/applets | 6 | DESTDIR = ../../plugins/applets |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(QPEDIR)/include | 8 | DEPENDPATH += ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS += ../../i18n/de/libvolumeapplet.ts | 12 | TRANSLATIONS += ../../i18n/de/libvolumeapplet.ts |
diff --git a/core/apps/embeddedkonsole/Makefile.in b/core/apps/embeddedkonsole/Makefile.in index b858cd4..8a69557 100644 --- a/core/apps/embeddedkonsole/Makefile.in +++ b/core/apps/embeddedkonsole/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= embeddedkonsole | 21 | TARGET= embeddedkonsole |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =TEWidget.h \ | 26 | HEADERS =TEWidget.h \ |
27 | TEScreen.h \ | 27 | TEScreen.h \ |
28 | TECommon.h \ | 28 | TECommon.h \ |
29 | TEHistory.h \ | 29 | TEHistory.h \ |
@@ -174,54 +174,55 @@ session.o: session.cpp \ | |||
174 | session.h \ | 174 | session.h \ |
175 | MyPty.h \ | 175 | MyPty.h \ |
176 | TEWidget.h \ | 176 | TEWidget.h \ |
177 | TECommon.h \ | 177 | TECommon.h \ |
178 | TEmuVt102.h \ | 178 | TEmuVt102.h \ |
179 | TEScreen.h \ | 179 | TEScreen.h \ |
180 | TEHistory.h \ | 180 | TEHistory.h \ |
181 | TEmulation.h \ | 181 | TEmulation.h \ |
182 | keytrans.h | 182 | keytrans.h |
183 | 183 | ||
184 | keytrans.o: keytrans.cpp \ | 184 | keytrans.o: keytrans.cpp \ |
185 | keytrans.h \ | 185 | keytrans.h \ |
186 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 186 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
187 | default.keytab.h | 187 | default.keytab.h |
188 | 188 | ||
189 | konsole.o: konsole.cpp \ | 189 | konsole.o: konsole.cpp \ |
190 | $(QPEDIR)/include/qpe/resource.h \ | 190 | $(OPIEDIR)/include/qpe/resource.h \ |
191 | $(QPEDIR)/include/qpe/qpetoolbar.h \ | 191 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ |
192 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 192 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
193 | $(OPIEDIR)/include/qpe/config.h \ | ||
193 | konsole.h \ | 194 | konsole.h \ |
194 | MyPty.h \ | 195 | MyPty.h \ |
195 | TEWidget.h \ | 196 | TEWidget.h \ |
196 | TECommon.h \ | 197 | TECommon.h \ |
197 | TEmuVt102.h \ | 198 | TEmuVt102.h \ |
198 | TEScreen.h \ | 199 | TEScreen.h \ |
199 | TEHistory.h \ | 200 | TEHistory.h \ |
200 | TEmulation.h \ | 201 | TEmulation.h \ |
201 | keytrans.h \ | 202 | keytrans.h \ |
202 | session.h | 203 | session.h |
203 | 204 | ||
204 | main.o: main.cpp \ | 205 | main.o: main.cpp \ |
205 | konsole.h \ | 206 | konsole.h \ |
206 | MyPty.h \ | 207 | MyPty.h \ |
207 | TEWidget.h \ | 208 | TEWidget.h \ |
208 | TECommon.h \ | 209 | TECommon.h \ |
209 | TEmuVt102.h \ | 210 | TEmuVt102.h \ |
210 | TEScreen.h \ | 211 | TEScreen.h \ |
211 | TEHistory.h \ | 212 | TEHistory.h \ |
212 | TEmulation.h \ | 213 | TEmulation.h \ |
213 | keytrans.h \ | 214 | keytrans.h \ |
214 | session.h \ | 215 | session.h \ |
215 | $(QPEDIR)/include/qpe/qpeapplication.h | 216 | $(OPIEDIR)/include/qpe/qpeapplication.h |
216 | 217 | ||
217 | MyPty.o: MyPty.cpp \ | 218 | MyPty.o: MyPty.cpp \ |
218 | MyPty.h | 219 | MyPty.h |
219 | 220 | ||
220 | moc_TEWidget.o: moc_TEWidget.cpp \ | 221 | moc_TEWidget.o: moc_TEWidget.cpp \ |
221 | TEWidget.h \ | 222 | TEWidget.h \ |
222 | TECommon.h | 223 | TECommon.h |
223 | 224 | ||
224 | moc_TEmulation.o: moc_TEmulation.cpp \ | 225 | moc_TEmulation.o: moc_TEmulation.cpp \ |
225 | TEmulation.h \ | 226 | TEmulation.h \ |
226 | TEWidget.h \ | 227 | TEWidget.h \ |
227 | TECommon.h \ | 228 | TECommon.h \ |
diff --git a/core/apps/embeddedkonsole/embeddedkonsole.pro b/core/apps/embeddedkonsole/embeddedkonsole.pro index b757ea5..3452014 100755 --- a/core/apps/embeddedkonsole/embeddedkonsole.pro +++ b/core/apps/embeddedkonsole/embeddedkonsole.pro | |||
@@ -1,17 +1,17 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | 2 | ||
3 | CONFIG += qt warn_on release | 3 | CONFIG += qt warn_on release |
4 | 4 | ||
5 | DESTDIR = $(QPEDIR)/bin | 5 | DESTDIR = $(OPIEDIR)/bin |
6 | 6 | ||
7 | HEADERS = TEWidget.h \ | 7 | HEADERS = TEWidget.h \ |
8 | TEScreen.h \ | 8 | TEScreen.h \ |
9 | TECommon.h \ | 9 | TECommon.h \ |
10 | TEHistory.h \ | 10 | TEHistory.h \ |
11 | TEmulation.h \ | 11 | TEmulation.h \ |
12 | TEmuVt102.h \ | 12 | TEmuVt102.h \ |
13 | session.h \ | 13 | session.h \ |
14 | keytrans.h \ | 14 | keytrans.h \ |
15 | konsole.h \ | 15 | konsole.h \ |
16 | MyPty.h | 16 | MyPty.h |
17 | 17 | ||
@@ -19,20 +19,20 @@ SOURCES = TEScreen.cpp \ | |||
19 | TEWidget.cpp \ | 19 | TEWidget.cpp \ |
20 | TEHistory.cpp \ | 20 | TEHistory.cpp \ |
21 | TEmulation.cpp \ | 21 | TEmulation.cpp \ |
22 | TEmuVt102.cpp \ | 22 | TEmuVt102.cpp \ |
23 | session.cpp \ | 23 | session.cpp \ |
24 | keytrans.cpp \ | 24 | keytrans.cpp \ |
25 | konsole.cpp \ | 25 | konsole.cpp \ |
26 | main.cpp \ | 26 | main.cpp \ |
27 | MyPty.cpp | 27 | MyPty.cpp |
28 | 28 | ||
29 | TARGET = embeddedkonsole | 29 | TARGET = embeddedkonsole |
30 | 30 | ||
31 | INCLUDEPATH += $(QPEDIR)/include | 31 | INCLUDEPATH += $(OPIEDIR)/include |
32 | 32 | ||
33 | DEPENDPATH+= $(QPEDIR)/include | 33 | DEPENDPATH+= $(OPIEDIR)/include |
34 | 34 | ||
35 | LIBS += -lqpe | 35 | LIBS += -lqpe |
36 | 36 | ||
37 | REQUIRES= embeddedkonsole | 37 | REQUIRES= embeddedkonsole |
38 | 38 | ||
diff --git a/core/apps/helpbrowser/Makefile.in b/core/apps/helpbrowser/Makefile.in index 8f0ce0e..ed3ea03 100644 --- a/core/apps/helpbrowser/Makefile.in +++ b/core/apps/helpbrowser/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= helpbrowser | 21 | TARGET= helpbrowser |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =helpbrowser.h | 26 | HEADERS =helpbrowser.h |
27 | SOURCES =helpbrowser.cpp \ | 27 | SOURCES =helpbrowser.cpp \ |
28 | main.cpp | 28 | main.cpp |
29 | OBJECTS =helpbrowser.o \ | 29 | OBJECTS =helpbrowser.o \ |
@@ -91,29 +91,29 @@ REQUIRES= | |||
91 | 91 | ||
92 | ####### Sub-libraries | 92 | ####### Sub-libraries |
93 | 93 | ||
94 | 94 | ||
95 | ###### Combined headers | 95 | ###### Combined headers |
96 | 96 | ||
97 | 97 | ||
98 | 98 | ||
99 | ####### Compile | 99 | ####### Compile |
100 | 100 | ||
101 | helpbrowser.o: helpbrowser.cpp \ | 101 | helpbrowser.o: helpbrowser.cpp \ |
102 | helpbrowser.h \ | 102 | helpbrowser.h \ |
103 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 103 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
104 | $(QPEDIR)/include/qpe/resource.h \ | 104 | $(OPIEDIR)/include/qpe/resource.h \ |
105 | $(QPEDIR)/include/qpe/global.h \ | 105 | $(OPIEDIR)/include/qpe/global.h \ |
106 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 106 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
107 | $(QPEDIR)/include/qpe/qpetoolbar.h | 107 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
108 | 108 | ||
109 | main.o: main.cpp \ | 109 | main.o: main.cpp \ |
110 | helpbrowser.h \ | 110 | helpbrowser.h \ |
111 | $(QPEDIR)/include/qpe/qpeapplication.h | 111 | $(OPIEDIR)/include/qpe/qpeapplication.h |
112 | 112 | ||
113 | moc_helpbrowser.o: moc_helpbrowser.cpp \ | 113 | moc_helpbrowser.o: moc_helpbrowser.cpp \ |
114 | helpbrowser.h | 114 | helpbrowser.h |
115 | 115 | ||
116 | moc_helpbrowser.cpp: helpbrowser.h | 116 | moc_helpbrowser.cpp: helpbrowser.h |
117 | $(MOC) helpbrowser.h -o moc_helpbrowser.cpp | 117 | $(MOC) helpbrowser.h -o moc_helpbrowser.cpp |
118 | 118 | ||
119 | 119 | ||
diff --git a/core/apps/helpbrowser/helpbrowser.pro b/core/apps/helpbrowser/helpbrowser.pro index 43230f1..f6ede8b 100644 --- a/core/apps/helpbrowser/helpbrowser.pro +++ b/core/apps/helpbrowser/helpbrowser.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = helpbrowser.h | 4 | HEADERS = helpbrowser.h |
5 | SOURCES = helpbrowser.cpp \ | 5 | SOURCES = helpbrowser.cpp \ |
6 | main.cpp | 6 | main.cpp |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(QPEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | INTERFACES= | 10 | INTERFACES= |
11 | 11 | ||
12 | TRANSLATIONS = ../i18n/de/helpbrowser.ts | 12 | TRANSLATIONS = ../i18n/de/helpbrowser.ts |
diff --git a/core/apps/qcop/Makefile.in b/core/apps/qcop/Makefile.in index 0a12320..fd543f5 100644 --- a/core/apps/qcop/Makefile.in +++ b/core/apps/qcop/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../bin/ | 17 | DESTDIR = ../bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= qcop | 21 | TARGET= qcop |
@@ -88,15 +88,15 @@ listaddonentmodules: | |||
88 | REQUIRES= | 88 | REQUIRES= |
89 | 89 | ||
90 | ####### Sub-libraries | 90 | ####### Sub-libraries |
91 | 91 | ||
92 | 92 | ||
93 | ###### Combined headers | 93 | ###### Combined headers |
94 | 94 | ||
95 | 95 | ||
96 | 96 | ||
97 | ####### Compile | 97 | ####### Compile |
98 | 98 | ||
99 | main.o: main.cpp \ | 99 | main.o: main.cpp \ |
100 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h | 100 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h |
101 | 101 | ||
102 | 102 | ||
diff --git a/core/apps/qcop/qcop.pro b/core/apps/qcop/qcop.pro index b52bfd8..3ffe796 100644 --- a/core/apps/qcop/qcop.pro +++ b/core/apps/qcop/qcop.pro | |||
@@ -1,10 +1,10 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = ../bin | 3 | DESTDIR = ../bin |
4 | HEADERS = | 4 | HEADERS = |
5 | SOURCES = main.cpp | 5 | SOURCES = main.cpp |
6 | INCLUDEPATH += $(QPEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
7 | DEPENDPATH+= $(QPEDIR)/include | 7 | DEPENDPATH+= $(OPIEDIR)/include |
8 | LIBS += -lqpe | 8 | LIBS += -lqpe |
9 | INTERFACES= | 9 | INTERFACES= |
10 | TARGET = qcop | 10 | TARGET = qcop |
diff --git a/core/apps/textedit/Makefile.in b/core/apps/textedit/Makefile.in index 84542bb..997f2a4 100644 --- a/core/apps/textedit/Makefile.in +++ b/core/apps/textedit/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= textedit | 21 | TARGET= textedit |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =textedit.h | 26 | HEADERS =textedit.h |
27 | SOURCES =main.cpp \ | 27 | SOURCES =main.cpp \ |
28 | textedit.cpp | 28 | textedit.cpp |
29 | OBJECTS =main.o \ | 29 | OBJECTS =main.o \ |
@@ -91,35 +91,35 @@ REQUIRES= | |||
91 | 91 | ||
92 | ####### Sub-libraries | 92 | ####### Sub-libraries |
93 | 93 | ||
94 | 94 | ||
95 | ###### Combined headers | 95 | ###### Combined headers |
96 | 96 | ||
97 | 97 | ||
98 | 98 | ||
99 | ####### Compile | 99 | ####### Compile |
100 | 100 | ||
101 | main.o: main.cpp \ | 101 | main.o: main.cpp \ |
102 | textedit.h \ | 102 | textedit.h \ |
103 | $(QPEDIR)/include/qpe/filemanager.h \ | 103 | $(OPIEDIR)/include/qpe/filemanager.h \ |
104 | $(QPEDIR)/include/qpe/qpeapplication.h | 104 | $(OPIEDIR)/include/qpe/qpeapplication.h |
105 | 105 | ||
106 | textedit.o: textedit.cpp \ | 106 | textedit.o: textedit.cpp \ |
107 | textedit.h \ | 107 | textedit.h \ |
108 | $(QPEDIR)/include/qpe/filemanager.h \ | 108 | $(OPIEDIR)/include/qpe/filemanager.h \ |
109 | $(QPEDIR)/include/qpe/global.h \ | 109 | $(OPIEDIR)/include/qpe/global.h \ |
110 | $(QPEDIR)/include/qpe/fileselector.h \ | 110 | $(OPIEDIR)/include/qpe/fileselector.h \ |
111 | $(QPEDIR)/include/qpe/applnk.h \ | 111 | $(OPIEDIR)/include/qpe/applnk.h \ |
112 | $(QPEDIR)/include/qpe/resource.h \ | 112 | $(OPIEDIR)/include/qpe/resource.h \ |
113 | $(QPEDIR)/include/qpe/config.h \ | 113 | $(OPIEDIR)/include/qpe/config.h \ |
114 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 114 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
115 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 115 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
116 | $(QPEDIR)/include/qpe/qpetoolbar.h | 116 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
117 | 117 | ||
118 | moc_textedit.o: moc_textedit.cpp \ | 118 | moc_textedit.o: moc_textedit.cpp \ |
119 | textedit.h \ | 119 | textedit.h \ |
120 | $(QPEDIR)/include/qpe/filemanager.h | 120 | $(OPIEDIR)/include/qpe/filemanager.h |
121 | 121 | ||
122 | moc_textedit.cpp: textedit.h | 122 | moc_textedit.cpp: textedit.h |
123 | $(MOC) textedit.h -o moc_textedit.cpp | 123 | $(MOC) textedit.h -o moc_textedit.cpp |
124 | 124 | ||
125 | 125 | ||
diff --git a/core/apps/textedit/textedit.pro b/core/apps/textedit/textedit.pro index 3f5473e..23b8d8d 100644 --- a/core/apps/textedit/textedit.pro +++ b/core/apps/textedit/textedit.pro | |||
@@ -1,16 +1,16 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | 3 | ||
4 | DESTDIR = $(QPEDIR)/bin | 4 | DESTDIR = $(OPIEDIR)/bin |
5 | 5 | ||
6 | HEADERS= textedit.h | 6 | HEADERS= textedit.h |
7 | 7 | ||
8 | SOURCES= main.cpp textedit.cpp | 8 | SOURCES= main.cpp textedit.cpp |
9 | 9 | ||
10 | INCLUDEPATH += $(QPEDIR)/include | 10 | INCLUDEPATH += $(OPIEDIR)/include |
11 | DEPENDPATH+= $(QPEDIR)/include | 11 | DEPENDPATH+= $(OPIEDIR)/include |
12 | LIBS += -lqpe | 12 | LIBS += -lqpe |
13 | 13 | ||
14 | TARGET = textedit | 14 | TARGET = textedit |
15 | 15 | ||
16 | TRANSLATIONS = ../i18n/de/textedit.ts | 16 | TRANSLATIONS = ../i18n/de/textedit.ts |
diff --git a/core/launcher/Makefile.in b/core/launcher/Makefile.in index e129fca..5e2dbe5 100644 --- a/core/launcher/Makefile.in +++ b/core/launcher/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include -I$(QPEDIR)/calibrate -I$(QPEDIR)/rsync | 9 | INCPATH =-I$(OPIEDIR)/include -I$(OPIEDIR)/calibrate -I$(OPIEDIR)/rsync |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe -lcrypt $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe -lcrypt $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= qpe | 21 | TARGET= qpe |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =background.h \ | 26 | HEADERS =background.h \ |
27 | desktop.h \ | 27 | desktop.h \ |
28 | info.h \ | 28 | info.h \ |
29 | appicons.h \ | 29 | appicons.h \ |
@@ -34,136 +34,136 @@ HEADERS = background.h \ | |||
34 | inputmethods.h \ | 34 | inputmethods.h \ |
35 | systray.h \ | 35 | systray.h \ |
36 | wait.h \ | 36 | wait.h \ |
37 | shutdownimpl.h \ | 37 | shutdownimpl.h \ |
38 | launcher.h \ | 38 | launcher.h \ |
39 | launcherview.h \ | 39 | launcherview.h \ |
40 | ../calibrate/calibrate.h \ | 40 | ../calibrate/calibrate.h \ |
41 | startmenu.h \ | 41 | startmenu.h \ |
42 | transferserver.h \ | 42 | transferserver.h \ |
43 | qcopbridge.h \ | 43 | qcopbridge.h \ |
44 | packageslave.h \ | 44 | packageslave.h \ |
45 | irserver.h \ | 45 | irserver.h \ |
46 | $(QPEDIR)/rsync/buf.h \ | 46 | $(OPIEDIR)/rsync/buf.h \ |
47 | $(QPEDIR)/rsync/checksum.h \ | 47 | $(OPIEDIR)/rsync/checksum.h \ |
48 | $(QPEDIR)/rsync/command.h \ | 48 | $(OPIEDIR)/rsync/command.h \ |
49 | $(QPEDIR)/rsync/emit.h \ | 49 | $(OPIEDIR)/rsync/emit.h \ |
50 | $(QPEDIR)/rsync/job.h \ | 50 | $(OPIEDIR)/rsync/job.h \ |
51 | $(QPEDIR)/rsync/netint.h \ | 51 | $(OPIEDIR)/rsync/netint.h \ |
52 | $(QPEDIR)/rsync/protocol.h \ | 52 | $(OPIEDIR)/rsync/protocol.h \ |
53 | $(QPEDIR)/rsync/prototab.h \ | 53 | $(OPIEDIR)/rsync/prototab.h \ |
54 | $(QPEDIR)/rsync/rsync.h \ | 54 | $(OPIEDIR)/rsync/rsync.h \ |
55 | $(QPEDIR)/rsync/search.h \ | 55 | $(OPIEDIR)/rsync/search.h \ |
56 | $(QPEDIR)/rsync/stream.h \ | 56 | $(OPIEDIR)/rsync/stream.h \ |
57 | $(QPEDIR)/rsync/sumset.h \ | 57 | $(OPIEDIR)/rsync/sumset.h \ |
58 | $(QPEDIR)/rsync/trace.h \ | 58 | $(OPIEDIR)/rsync/trace.h \ |
59 | $(QPEDIR)/rsync/types.h \ | 59 | $(OPIEDIR)/rsync/types.h \ |
60 | $(QPEDIR)/rsync/util.h \ | 60 | $(OPIEDIR)/rsync/util.h \ |
61 | $(QPEDIR)/rsync/whole.h \ | 61 | $(OPIEDIR)/rsync/whole.h \ |
62 | $(QPEDIR)/rsync/config_rsync.h \ | 62 | $(OPIEDIR)/rsync/config_rsync.h \ |
63 | $(QPEDIR)/rsync/qrsync.h | 63 | $(OPIEDIR)/rsync/qrsync.h |
64 | SOURCES =background.cpp \ | 64 | SOURCES =background.cpp \ |
65 | desktop.cpp \ | 65 | desktop.cpp \ |
66 | info.cpp \ | 66 | info.cpp \ |
67 | appicons.cpp \ | 67 | appicons.cpp \ |
68 | taskbar.cpp \ | 68 | taskbar.cpp \ |
69 | sidething.cpp \ | 69 | sidething.cpp \ |
70 | mrulist.cpp \ | 70 | mrulist.cpp \ |
71 | stabmon.cpp \ | 71 | stabmon.cpp \ |
72 | inputmethods.cpp \ | 72 | inputmethods.cpp \ |
73 | systray.cpp \ | 73 | systray.cpp \ |
74 | wait.cpp \ | 74 | wait.cpp \ |
75 | shutdownimpl.cpp \ | 75 | shutdownimpl.cpp \ |
76 | launcher.cpp \ | 76 | launcher.cpp \ |
77 | launcherview.cpp \ | 77 | launcherview.cpp \ |
78 | $(QPEDIR)/calibrate/calibrate.cpp \ | 78 | $(OPIEDIR)/calibrate/calibrate.cpp \ |
79 | transferserver.cpp \ | 79 | transferserver.cpp \ |
80 | packageslave.cpp \ | 80 | packageslave.cpp \ |
81 | irserver.cpp \ | 81 | irserver.cpp \ |
82 | qcopbridge.cpp \ | 82 | qcopbridge.cpp \ |
83 | startmenu.cpp \ | 83 | startmenu.cpp \ |
84 | main.cpp \ | 84 | main.cpp \ |
85 | $(QPEDIR)/rsync/base64.c \ | 85 | $(OPIEDIR)/rsync/base64.c \ |
86 | $(QPEDIR)/rsync/buf.c \ | 86 | $(OPIEDIR)/rsync/buf.c \ |
87 | $(QPEDIR)/rsync/checksum.c \ | 87 | $(OPIEDIR)/rsync/checksum.c \ |
88 | $(QPEDIR)/rsync/command.c \ | 88 | $(OPIEDIR)/rsync/command.c \ |
89 | $(QPEDIR)/rsync/delta.c \ | 89 | $(OPIEDIR)/rsync/delta.c \ |
90 | $(QPEDIR)/rsync/emit.c \ | 90 | $(OPIEDIR)/rsync/emit.c \ |
91 | $(QPEDIR)/rsync/hex.c \ | 91 | $(OPIEDIR)/rsync/hex.c \ |
92 | $(QPEDIR)/rsync/job.c \ | 92 | $(OPIEDIR)/rsync/job.c \ |
93 | $(QPEDIR)/rsync/mdfour.c \ | 93 | $(OPIEDIR)/rsync/mdfour.c \ |
94 | $(QPEDIR)/rsync/mksum.c \ | 94 | $(OPIEDIR)/rsync/mksum.c \ |
95 | $(QPEDIR)/rsync/msg.c \ | 95 | $(OPIEDIR)/rsync/msg.c \ |
96 | $(QPEDIR)/rsync/netint.c \ | 96 | $(OPIEDIR)/rsync/netint.c \ |
97 | $(QPEDIR)/rsync/patch.c \ | 97 | $(OPIEDIR)/rsync/patch.c \ |
98 | $(QPEDIR)/rsync/prototab.c \ | 98 | $(OPIEDIR)/rsync/prototab.c \ |
99 | $(QPEDIR)/rsync/readsums.c \ | 99 | $(OPIEDIR)/rsync/readsums.c \ |
100 | $(QPEDIR)/rsync/scoop.c \ | 100 | $(OPIEDIR)/rsync/scoop.c \ |
101 | $(QPEDIR)/rsync/search.c \ | 101 | $(OPIEDIR)/rsync/search.c \ |
102 | $(QPEDIR)/rsync/stats.c \ | 102 | $(OPIEDIR)/rsync/stats.c \ |
103 | $(QPEDIR)/rsync/stream.c \ | 103 | $(OPIEDIR)/rsync/stream.c \ |
104 | $(QPEDIR)/rsync/sumset.c \ | 104 | $(OPIEDIR)/rsync/sumset.c \ |
105 | $(QPEDIR)/rsync/trace.c \ | 105 | $(OPIEDIR)/rsync/trace.c \ |
106 | $(QPEDIR)/rsync/tube.c \ | 106 | $(OPIEDIR)/rsync/tube.c \ |
107 | $(QPEDIR)/rsync/util.c \ | 107 | $(OPIEDIR)/rsync/util.c \ |
108 | $(QPEDIR)/rsync/version.c \ | 108 | $(OPIEDIR)/rsync/version.c \ |
109 | $(QPEDIR)/rsync/whole.c \ | 109 | $(OPIEDIR)/rsync/whole.c \ |
110 | $(QPEDIR)/rsync/qrsync.cpp | 110 | $(OPIEDIR)/rsync/qrsync.cpp |
111 | OBJECTS =background.o \ | 111 | OBJECTS =background.o \ |
112 | desktop.o \ | 112 | desktop.o \ |
113 | info.o \ | 113 | info.o \ |
114 | appicons.o \ | 114 | appicons.o \ |
115 | taskbar.o \ | 115 | taskbar.o \ |
116 | sidething.o \ | 116 | sidething.o \ |
117 | mrulist.o \ | 117 | mrulist.o \ |
118 | stabmon.o \ | 118 | stabmon.o \ |
119 | inputmethods.o \ | 119 | inputmethods.o \ |
120 | systray.o \ | 120 | systray.o \ |
121 | wait.o \ | 121 | wait.o \ |
122 | shutdownimpl.o \ | 122 | shutdownimpl.o \ |
123 | launcher.o \ | 123 | launcher.o \ |
124 | launcherview.o \ | 124 | launcherview.o \ |
125 | $(QPEDIR)/calibrate/calibrate.o \ | 125 | $(OPIEDIR)/calibrate/calibrate.o \ |
126 | transferserver.o \ | 126 | transferserver.o \ |
127 | packageslave.o \ | 127 | packageslave.o \ |
128 | irserver.o \ | 128 | irserver.o \ |
129 | qcopbridge.o \ | 129 | qcopbridge.o \ |
130 | startmenu.o \ | 130 | startmenu.o \ |
131 | main.o \ | 131 | main.o \ |
132 | $(QPEDIR)/rsync/base64.o \ | 132 | $(OPIEDIR)/rsync/base64.o \ |
133 | $(QPEDIR)/rsync/buf.o \ | 133 | $(OPIEDIR)/rsync/buf.o \ |
134 | $(QPEDIR)/rsync/checksum.o \ | 134 | $(OPIEDIR)/rsync/checksum.o \ |
135 | $(QPEDIR)/rsync/command.o \ | 135 | $(OPIEDIR)/rsync/command.o \ |
136 | $(QPEDIR)/rsync/delta.o \ | 136 | $(OPIEDIR)/rsync/delta.o \ |
137 | $(QPEDIR)/rsync/emit.o \ | 137 | $(OPIEDIR)/rsync/emit.o \ |
138 | $(QPEDIR)/rsync/hex.o \ | 138 | $(OPIEDIR)/rsync/hex.o \ |
139 | $(QPEDIR)/rsync/job.o \ | 139 | $(OPIEDIR)/rsync/job.o \ |
140 | $(QPEDIR)/rsync/mdfour.o \ | 140 | $(OPIEDIR)/rsync/mdfour.o \ |
141 | $(QPEDIR)/rsync/mksum.o \ | 141 | $(OPIEDIR)/rsync/mksum.o \ |
142 | $(QPEDIR)/rsync/msg.o \ | 142 | $(OPIEDIR)/rsync/msg.o \ |
143 | $(QPEDIR)/rsync/netint.o \ | 143 | $(OPIEDIR)/rsync/netint.o \ |
144 | $(QPEDIR)/rsync/patch.o \ | 144 | $(OPIEDIR)/rsync/patch.o \ |
145 | $(QPEDIR)/rsync/prototab.o \ | 145 | $(OPIEDIR)/rsync/prototab.o \ |
146 | $(QPEDIR)/rsync/readsums.o \ | 146 | $(OPIEDIR)/rsync/readsums.o \ |
147 | $(QPEDIR)/rsync/scoop.o \ | 147 | $(OPIEDIR)/rsync/scoop.o \ |
148 | $(QPEDIR)/rsync/search.o \ | 148 | $(OPIEDIR)/rsync/search.o \ |
149 | $(QPEDIR)/rsync/stats.o \ | 149 | $(OPIEDIR)/rsync/stats.o \ |
150 | $(QPEDIR)/rsync/stream.o \ | 150 | $(OPIEDIR)/rsync/stream.o \ |
151 | $(QPEDIR)/rsync/sumset.o \ | 151 | $(OPIEDIR)/rsync/sumset.o \ |
152 | $(QPEDIR)/rsync/trace.o \ | 152 | $(OPIEDIR)/rsync/trace.o \ |
153 | $(QPEDIR)/rsync/tube.o \ | 153 | $(OPIEDIR)/rsync/tube.o \ |
154 | $(QPEDIR)/rsync/util.o \ | 154 | $(OPIEDIR)/rsync/util.o \ |
155 | $(QPEDIR)/rsync/version.o \ | 155 | $(OPIEDIR)/rsync/version.o \ |
156 | $(QPEDIR)/rsync/whole.o \ | 156 | $(OPIEDIR)/rsync/whole.o \ |
157 | $(QPEDIR)/rsync/qrsync.o \ | 157 | $(OPIEDIR)/rsync/qrsync.o \ |
158 | shutdown.o \ | 158 | shutdown.o \ |
159 | syncdialog.o | 159 | syncdialog.o |
160 | INTERFACES = shutdown.ui \ | 160 | INTERFACES = shutdown.ui \ |
161 | syncdialog.ui | 161 | syncdialog.ui |
162 | UICDECLS = shutdown.h \ | 162 | UICDECLS = shutdown.h \ |
163 | syncdialog.h | 163 | syncdialog.h |
164 | UICIMPLS = shutdown.cpp \ | 164 | UICIMPLS = shutdown.cpp \ |
165 | syncdialog.cpp | 165 | syncdialog.cpp |
166 | SRCMOC =moc_background.cpp \ | 166 | SRCMOC =moc_background.cpp \ |
167 | moc_desktop.cpp \ | 167 | moc_desktop.cpp \ |
168 | moc_info.cpp \ | 168 | moc_info.cpp \ |
169 | moc_appicons.cpp \ | 169 | moc_appicons.cpp \ |
@@ -263,552 +263,561 @@ REQUIRES= | |||
263 | 263 | ||
264 | ###### Combined headers | 264 | ###### Combined headers |
265 | 265 | ||
266 | 266 | ||
267 | 267 | ||
268 | ####### Compile | 268 | ####### Compile |
269 | 269 | ||
270 | background.o: background.cpp \ | 270 | background.o: background.cpp \ |
271 | background.h \ | 271 | background.h \ |
272 | desktop.h \ | 272 | desktop.h \ |
273 | shutdownimpl.h \ | 273 | shutdownimpl.h \ |
274 | shutdown.h \ | 274 | shutdown.h \ |
275 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 275 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
276 | $(QPEDIR)/include/qpe/resource.h | 276 | $(OPIEDIR)/include/qpe/resource.h |
277 | 277 | ||
278 | desktop.o: desktop.cpp \ | 278 | desktop.o: desktop.cpp \ |
279 | desktop.h \ | 279 | desktop.h \ |
280 | shutdownimpl.h \ | 280 | shutdownimpl.h \ |
281 | shutdown.h \ | 281 | shutdown.h \ |
282 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 282 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
283 | info.h \ | 283 | info.h \ |
284 | background.h \ | 284 | background.h \ |
285 | launcher.h \ | 285 | launcher.h \ |
286 | launcherview.h \ | 286 | launcherview.h \ |
287 | $(QPEDIR)/include/qpe/storage.h \ | 287 | $(OPIEDIR)/include/qpe/storage.h \ |
288 | mrulist.h \ | 288 | mrulist.h \ |
289 | $(QPEDIR)/include/qpe/applnk.h \ | 289 | $(OPIEDIR)/include/qpe/applnk.h \ |
290 | qcopbridge.h \ | 290 | qcopbridge.h \ |
291 | startmenu.h \ | 291 | startmenu.h \ |
292 | taskbar.h \ | 292 | taskbar.h \ |
293 | $(QPEDIR)/include/qpe/custom.h \ | 293 | $(OPIEDIR)/include/qpe/custom.h \ |
294 | transferserver.h \ | 294 | transferserver.h \ |
295 | irserver.h \ | 295 | irserver.h \ |
296 | packageslave.h \ | 296 | packageslave.h \ |
297 | $(QPEDIR)/include/qpe/mimetype.h \ | 297 | $(OPIEDIR)/include/qpe/mimetype.h \ |
298 | $(QPEDIR)/include/qpe/password.h \ | 298 | $(OPIEDIR)/include/qpe/password.h \ |
299 | $(QPEDIR)/include/qpe/config.h \ | 299 | $(OPIEDIR)/include/qpe/config.h \ |
300 | $(QPEDIR)/include/qpe/power.h \ | 300 | $(OPIEDIR)/include/qpe/power.h \ |
301 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 301 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
302 | $(QPEDIR)/include/qpe/global.h | 302 | $(OPIEDIR)/include/qpe/global.h |
303 | 303 | ||
304 | info.o: info.cpp \ | 304 | info.o: info.cpp \ |
305 | info.h \ | 305 | info.h \ |
306 | background.h \ | 306 | background.h \ |
307 | desktop.h \ | 307 | desktop.h \ |
308 | shutdownimpl.h \ | 308 | shutdownimpl.h \ |
309 | shutdown.h \ | 309 | shutdown.h \ |
310 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 310 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
311 | $(QPEDIR)/include/qpe/resource.h \ | 311 | $(OPIEDIR)/include/qpe/resource.h \ |
312 | $(QPEDIR)/include/qpe/version.h | 312 | $(OPIEDIR)/include/qpe/version.h |
313 | 313 | ||
314 | appicons.o: appicons.cpp \ | 314 | appicons.o: appicons.cpp \ |
315 | appicons.moc \ | 315 | appicons.moc \ |
316 | appicons.h \ | 316 | appicons.h \ |
317 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h | 317 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h |
318 | 318 | ||
319 | taskbar.o: taskbar.cpp \ | 319 | taskbar.o: taskbar.cpp \ |
320 | startmenu.h \ | 320 | startmenu.h \ |
321 | inputmethods.h \ | 321 | inputmethods.h \ |
322 | $(QPEDIR)/include/qpe/inputmethodinterface.h \ | 322 | $(OPIEDIR)/include/qpe/inputmethodinterface.h \ |
323 | $(QPEDIR)/include/qpe/qcom.h \ | 323 | $(OPIEDIR)/include/qpe/qcom.h \ |
324 | $(QPEDIR)/include/qpe/quuid.h \ | 324 | $(OPIEDIR)/include/qpe/quuid.h \ |
325 | mrulist.h \ | 325 | mrulist.h \ |
326 | $(QPEDIR)/include/qpe/applnk.h \ | 326 | $(OPIEDIR)/include/qpe/applnk.h \ |
327 | systray.h \ | 327 | systray.h \ |
328 | $(QPEDIR)/include/qpe/taskbarappletinterface.h \ | 328 | $(OPIEDIR)/include/qpe/taskbarappletinterface.h \ |
329 | $(QPEDIR)/calibrate/calibrate.h \ | 329 | $(OPIEDIR)/calibrate/calibrate.h \ |
330 | wait.h \ | 330 | wait.h \ |
331 | $(QPEDIR)/include/qpe/resource.h \ | 331 | $(OPIEDIR)/include/qpe/resource.h \ |
332 | appicons.h \ | 332 | appicons.h \ |
333 | taskbar.h \ | 333 | taskbar.h \ |
334 | $(QPEDIR)/include/qpe/custom.h \ | 334 | $(OPIEDIR)/include/qpe/custom.h \ |
335 | desktop.h \ | 335 | desktop.h \ |
336 | shutdownimpl.h \ | 336 | shutdownimpl.h \ |
337 | shutdown.h \ | 337 | shutdown.h \ |
338 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 338 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
339 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 339 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
340 | $(QPEDIR)/include/qpe/global.h \ | 340 | $(OPIEDIR)/include/qpe/global.h \ |
341 | ../taskbar/apps.h \ | 341 | ../taskbar/apps.h \ |
342 | ../addressbook/addressbook.h \ | 342 | ../addressbook/addressbook.h \ |
343 | ../datebook/datebook.h \ | 343 | ../datebook/datebook.h \ |
344 | $(QPEDIR)/include/qpe/datebookdb.h \ | 344 | $(OPIEDIR)/include/qpe/datebookdb.h \ |
345 | $(QPEDIR)/include/qpe/event.h \ | 345 | $(OPIEDIR)/include/qpe/event.h \ |
346 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 346 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
347 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
348 | $(OPIEDIR)/include/qpe/qpcglobal.h \ | ||
347 | ../helpbrowser/helpbrowser.h \ | 349 | ../helpbrowser/helpbrowser.h \ |
348 | ../minesweep/minesweep.h \ | 350 | ../minesweep/minesweep.h \ |
349 | ../textedit/textedit.h \ | 351 | ../textedit/textedit.h \ |
350 | $(QPEDIR)/include/qpe/filemanager.h \ | 352 | $(OPIEDIR)/include/qpe/filemanager.h \ |
351 | ../todo/mainwindow.h \ | 353 | ../todo/mainwindow.h \ |
352 | ../citytime/citytime.h \ | 354 | ../citytime/citytime.h \ |
353 | ../clock/clock.h \ | 355 | ../clock/clock.h \ |
354 | ../calculator/calculatorimpl.h \ | 356 | ../calculator/calculatorimpl.h \ |
355 | ../sysinfo/sysinfo.h \ | 357 | ../sysinfo/sysinfo.h \ |
356 | ../settings/appearance/settings.h \ | 358 | ../settings/appearance/settings.h \ |
357 | ../settings/systemtime/settime.h \ | 359 | ../settings/systemtime/settime.h \ |
358 | $(QPEDIR)/include/qpe/timestring.h \ | 360 | $(OPIEDIR)/include/qpe/timestring.h \ |
359 | ../filebrowser/filebrowser.h \ | 361 | ../filebrowser/filebrowser.h \ |
360 | ../solitaire/canvascardwindow.h \ | 362 | ../solitaire/canvascardwindow.h \ |
361 | ../snake/interface.h \ | 363 | ../snake/interface.h \ |
362 | ../parashoot/interface.h \ | 364 | ../parashoot/interface.h \ |
363 | $(QPEDIR)/include/qpe/sound.h \ | 365 | $(OPIEDIR)/include/qpe/sound.h \ |
364 | ../mpegplayer/mediaplayer.h \ | 366 | ../mpegplayer/mediaplayer.h \ |
365 | $(QPEDIR)/include/qpe/qlibrary.h \ | 367 | $(OPIEDIR)/include/qpe/qlibrary.h \ |
366 | ../embeddedkonsole/konsole.h \ | 368 | ../embeddedkonsole/konsole.h \ |
367 | ../wordgame/wordgame.h \ | 369 | ../wordgame/wordgame.h \ |
368 | $(QPEDIR)/include/qpe/qdawg.h | 370 | $(OPIEDIR)/include/qpe/qdawg.h |
369 | 371 | ||
370 | sidething.o: sidething.cpp \ | 372 | sidething.o: sidething.cpp \ |
371 | sidething.h \ | 373 | sidething.h \ |
372 | startmenu.h \ | 374 | startmenu.h \ |
373 | $(QPEDIR)/include/qpe/resource.h | 375 | $(OPIEDIR)/include/qpe/resource.h |
374 | 376 | ||
375 | mrulist.o: mrulist.cpp \ | 377 | mrulist.o: mrulist.cpp \ |
376 | mrulist.h \ | 378 | mrulist.h \ |
377 | $(QPEDIR)/include/qpe/applnk.h \ | 379 | $(OPIEDIR)/include/qpe/applnk.h \ |
378 | $(QPEDIR)/include/qpe/global.h \ | 380 | $(OPIEDIR)/include/qpe/global.h \ |
379 | $(QPEDIR)/include/qpe/resource.h | 381 | $(OPIEDIR)/include/qpe/resource.h |
380 | 382 | ||
381 | stabmon.o: stabmon.cpp \ | 383 | stabmon.o: stabmon.cpp \ |
382 | stabmon.h \ | 384 | stabmon.h \ |
383 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h | 385 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h |
384 | 386 | ||
385 | inputmethods.o: inputmethods.cpp \ | 387 | inputmethods.o: inputmethods.cpp \ |
386 | inputmethods.h \ | 388 | inputmethods.h \ |
387 | $(QPEDIR)/include/qpe/inputmethodinterface.h \ | 389 | $(OPIEDIR)/include/qpe/inputmethodinterface.h \ |
388 | $(QPEDIR)/include/qpe/qcom.h \ | 390 | $(OPIEDIR)/include/qpe/qcom.h \ |
389 | $(QPEDIR)/include/qpe/quuid.h \ | 391 | $(OPIEDIR)/include/qpe/quuid.h \ |
390 | $(QPEDIR)/include/qpe/config.h \ | 392 | $(OPIEDIR)/include/qpe/config.h \ |
391 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 393 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
392 | $(QPEDIR)/include/qpe/qlibrary.h | 394 | $(OPIEDIR)/include/qpe/qlibrary.h |
393 | 395 | ||
394 | systray.o: systray.cpp \ | 396 | systray.o: systray.cpp \ |
395 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 397 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
396 | $(QPEDIR)/include/qpe/qlibrary.h \ | 398 | $(OPIEDIR)/include/qpe/qlibrary.h \ |
397 | $(QPEDIR)/include/qpe/qcom.h \ | 399 | $(OPIEDIR)/include/qpe/qcom.h \ |
398 | $(QPEDIR)/include/qpe/quuid.h \ | 400 | $(OPIEDIR)/include/qpe/quuid.h \ |
399 | $(QPEDIR)/include/qpe/config.h \ | 401 | $(OPIEDIR)/include/qpe/config.h \ |
400 | quicklauncher.h \ | 402 | quicklauncher.h \ |
401 | systray.h \ | 403 | systray.h \ |
402 | $(QPEDIR)/include/qpe/taskbarappletinterface.h | 404 | $(OPIEDIR)/include/qpe/taskbarappletinterface.h |
403 | 405 | ||
404 | wait.o: wait.cpp \ | 406 | wait.o: wait.cpp \ |
405 | wait.h \ | 407 | wait.h \ |
406 | $(QPEDIR)/include/qpe/resource.h | 408 | $(OPIEDIR)/include/qpe/resource.h |
407 | 409 | ||
408 | shutdownimpl.o: shutdownimpl.cpp \ | 410 | shutdownimpl.o: shutdownimpl.cpp \ |
409 | shutdownimpl.h \ | 411 | shutdownimpl.h \ |
410 | shutdown.h \ | 412 | shutdown.h \ |
411 | $(QPEDIR)/include/qpe/global.h | 413 | $(OPIEDIR)/include/qpe/global.h |
412 | 414 | ||
413 | launcher.o: launcher.cpp \ | 415 | launcher.o: launcher.cpp \ |
414 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 416 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
415 | $(QPEDIR)/include/qpe/resource.h \ | 417 | $(OPIEDIR)/include/qpe/resource.h \ |
416 | $(QPEDIR)/include/qpe/applnk.h \ | 418 | $(OPIEDIR)/include/qpe/applnk.h \ |
417 | $(QPEDIR)/include/qpe/config.h \ | 419 | $(OPIEDIR)/include/qpe/config.h \ |
418 | $(QPEDIR)/include/qpe/global.h \ | 420 | $(OPIEDIR)/include/qpe/global.h \ |
419 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 421 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
420 | $(QPEDIR)/include/qpe/mimetype.h \ | 422 | $(OPIEDIR)/include/qpe/mimetype.h \ |
421 | $(QPEDIR)/include/qpe/storage.h \ | 423 | $(OPIEDIR)/include/qpe/storage.h \ |
424 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ | ||
422 | launcherview.h \ | 425 | launcherview.h \ |
423 | launcher.h \ | 426 | launcher.h \ |
424 | $(QPEDIR)/include/qpe/lnkproperties.h \ | 427 | syncdialog.h \ |
428 | desktop.h \ | ||
429 | shutdownimpl.h \ | ||
430 | shutdown.h \ | ||
431 | $(OPIEDIR)/include/qpe/lnkproperties.h \ | ||
425 | mrulist.h \ | 432 | mrulist.h \ |
426 | $(QPEDIR)/rsync/qrsync.h | 433 | $(OPIEDIR)/rsync/qrsync.h |
427 | 434 | ||
428 | launcherview.o: launcherview.cpp \ | 435 | launcherview.o: launcherview.cpp \ |
429 | launcherview.h \ | 436 | launcherview.h \ |
430 | $(QPEDIR)/include/qpe/storage.h \ | 437 | $(OPIEDIR)/include/qpe/storage.h \ |
431 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 438 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
432 | $(QPEDIR)/include/qpe/applnk.h \ | 439 | $(OPIEDIR)/include/qpe/applnk.h \ |
433 | $(QPEDIR)/include/qpe/qpedebug.h \ | 440 | $(OPIEDIR)/include/qpe/qpedebug.h \ |
434 | $(QPEDIR)/include/qpe/categories.h \ | 441 | $(OPIEDIR)/include/qpe/categories.h \ |
435 | $(QPEDIR)/include/qpe/categoryselect.h \ | 442 | $(OPIEDIR)/include/qpe/categoryselect.h \ |
436 | $(QPEDIR)/include/qpe/menubutton.h \ | 443 | $(OPIEDIR)/include/qpe/menubutton.h \ |
437 | $(QPEDIR)/include/qpe/resource.h \ | 444 | $(OPIEDIR)/include/qpe/resource.h \ |
438 | $(QPEDIR)/include/qpe/qpetoolbar.h | 445 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
439 | 446 | ||
440 | $(QPEDIR)/calibrate/calibrate.o: $(QPEDIR)/calibrate/calibrate.cpp \ | 447 | $(OPIEDIR)/calibrate/calibrate.o: $(OPIEDIR)/calibrate/calibrate.cpp \ |
441 | $(QPEDIR)/calibrate/calibrate.h \ | 448 | $(OPIEDIR)/calibrate/calibrate.h \ |
442 | $(QPEDIR)/include/qpe/resource.h | 449 | $(OPIEDIR)/include/qpe/resource.h |
443 | 450 | ||
444 | transferserver.o: transferserver.cpp \ | 451 | transferserver.o: transferserver.cpp \ |
445 | $(QPEDIR)/include/qpe/qprocess.h \ | 452 | $(OPIEDIR)/include/qpe/qprocess.h \ |
446 | $(QPEDIR)/include/qpe/process.h \ | 453 | $(OPIEDIR)/include/qpe/process.h \ |
454 | $(OPIEDIR)/include/qpe/config.h \ | ||
455 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ | ||
447 | transferserver.h | 456 | transferserver.h |
448 | 457 | ||
449 | packageslave.o: packageslave.cpp \ | 458 | packageslave.o: packageslave.cpp \ |
450 | packageslave.h \ | 459 | packageslave.h \ |
451 | $(QPEDIR)/include/qpe/process.h \ | 460 | $(OPIEDIR)/include/qpe/process.h \ |
452 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h | 461 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h |
453 | 462 | ||
454 | irserver.o: irserver.cpp \ | 463 | irserver.o: irserver.cpp \ |
455 | irserver.h \ | 464 | irserver.h \ |
456 | $(QPEDIR)/include/qpe/qlibrary.h \ | 465 | $(OPIEDIR)/include/qpe/qlibrary.h \ |
457 | $(QPEDIR)/include/qpe/qcom.h \ | 466 | $(OPIEDIR)/include/qpe/qcom.h \ |
458 | $(QPEDIR)/include/qpe/quuid.h \ | 467 | $(OPIEDIR)/include/qpe/quuid.h \ |
459 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 468 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
460 | obexinterface.h | 469 | obexinterface.h |
461 | 470 | ||
462 | qcopbridge.o: qcopbridge.cpp \ | 471 | qcopbridge.o: qcopbridge.cpp \ |
463 | qcopbridge.h \ | 472 | qcopbridge.h \ |
464 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 473 | transferserver.h \ |
465 | $(QPEDIR)/include/qpe/qpeapplication.h | 474 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
475 | $(OPIEDIR)/include/qpe/qpeapplication.h | ||
466 | 476 | ||
467 | startmenu.o: startmenu.cpp \ | 477 | startmenu.o: startmenu.cpp \ |
468 | startmenu.h \ | 478 | startmenu.h \ |
469 | sidething.h \ | 479 | sidething.h \ |
470 | mrulist.h \ | 480 | mrulist.h \ |
471 | $(QPEDIR)/include/qpe/applnk.h \ | 481 | $(OPIEDIR)/include/qpe/applnk.h \ |
472 | info.h \ | 482 | info.h \ |
473 | background.h \ | 483 | background.h \ |
474 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 484 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
475 | $(QPEDIR)/include/qpe/config.h \ | 485 | $(OPIEDIR)/include/qpe/config.h \ |
476 | $(QPEDIR)/include/qpe/global.h \ | 486 | $(OPIEDIR)/include/qpe/global.h \ |
477 | $(QPEDIR)/include/qpe/resource.h | 487 | $(OPIEDIR)/include/qpe/resource.h |
478 | 488 | ||
479 | main.o: main.cpp \ | 489 | main.o: main.cpp \ |
480 | desktop.h \ | 490 | desktop.h \ |
481 | shutdownimpl.h \ | 491 | shutdownimpl.h \ |
482 | shutdown.h \ | 492 | shutdown.h \ |
483 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 493 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
484 | taskbar.h \ | 494 | taskbar.h \ |
485 | $(QPEDIR)/include/qpe/custom.h \ | 495 | $(OPIEDIR)/include/qpe/custom.h \ |
486 | stabmon.h \ | 496 | stabmon.h \ |
487 | $(QPEDIR)/include/qpe/network.h \ | 497 | $(OPIEDIR)/include/qpe/network.h \ |
488 | $(QPEDIR)/include/qpe/config.h \ | 498 | $(OPIEDIR)/include/qpe/config.h \ |
489 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 499 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
490 | $(QPEDIR)/include/qpe/alarmserver.h \ | 500 | $(OPIEDIR)/include/qpe/alarmserver.h \ |
491 | ../calibrate/calibrate.h \ | 501 | ../calibrate/calibrate.h \ |
492 | ../login/qdmdialogimpl.h \ | 502 | ../login/qdmdialogimpl.h \ |
493 | $(QPEDIR)/include/qpe/global.h | 503 | $(OPIEDIR)/include/qpe/global.h |
494 | 504 | ||
495 | $(QPEDIR)/rsync/base64.o: $(QPEDIR)/rsync/base64.c \ | 505 | $(OPIEDIR)/rsync/base64.o: $(OPIEDIR)/rsync/base64.c \ |
496 | $(QPEDIR)/rsync/config_rsync.h \ | 506 | $(OPIEDIR)/rsync/config_rsync.h \ |
497 | $(QPEDIR)/rsync/config_linux.h \ | 507 | $(OPIEDIR)/rsync/config_linux.h \ |
498 | $(QPEDIR)/rsync/rsync.h | 508 | $(OPIEDIR)/rsync/rsync.h |
499 | 509 | ||
500 | $(QPEDIR)/rsync/buf.o: $(QPEDIR)/rsync/buf.c \ | 510 | $(OPIEDIR)/rsync/buf.o: $(OPIEDIR)/rsync/buf.c \ |
501 | $(QPEDIR)/rsync/config_rsync.h \ | 511 | $(OPIEDIR)/rsync/config_rsync.h \ |
502 | $(QPEDIR)/rsync/config_linux.h \ | 512 | $(OPIEDIR)/rsync/config_linux.h \ |
503 | $(QPEDIR)/rsync/rsync.h \ | 513 | $(OPIEDIR)/rsync/rsync.h \ |
504 | $(QPEDIR)/rsync/trace.h \ | 514 | $(OPIEDIR)/rsync/trace.h \ |
505 | $(QPEDIR)/rsync/buf.h \ | 515 | $(OPIEDIR)/rsync/buf.h \ |
506 | $(QPEDIR)/rsync/util.h | 516 | $(OPIEDIR)/rsync/util.h |
507 | 517 | ||
508 | $(QPEDIR)/rsync/checksum.o: $(QPEDIR)/rsync/checksum.c \ | 518 | $(OPIEDIR)/rsync/checksum.o: $(OPIEDIR)/rsync/checksum.c \ |
509 | $(QPEDIR)/rsync/config_rsync.h \ | 519 | $(OPIEDIR)/rsync/config_rsync.h \ |
510 | $(QPEDIR)/rsync/config_linux.h \ | 520 | $(OPIEDIR)/rsync/config_linux.h \ |
511 | $(QPEDIR)/rsync/rsync.h \ | 521 | $(OPIEDIR)/rsync/rsync.h \ |
512 | $(QPEDIR)/rsync/checksum.h | 522 | $(OPIEDIR)/rsync/checksum.h |
513 | 523 | ||
514 | $(QPEDIR)/rsync/command.o: $(QPEDIR)/rsync/command.c \ | 524 | $(OPIEDIR)/rsync/command.o: $(OPIEDIR)/rsync/command.c \ |
515 | $(QPEDIR)/rsync/config_rsync.h \ | 525 | $(OPIEDIR)/rsync/config_rsync.h \ |
516 | $(QPEDIR)/rsync/config_linux.h \ | 526 | $(OPIEDIR)/rsync/config_linux.h \ |
517 | $(QPEDIR)/rsync/rsync.h \ | 527 | $(OPIEDIR)/rsync/rsync.h \ |
518 | $(QPEDIR)/rsync/command.h | 528 | $(OPIEDIR)/rsync/command.h |
519 | 529 | ||
520 | $(QPEDIR)/rsync/delta.o: $(QPEDIR)/rsync/delta.c \ | 530 | $(OPIEDIR)/rsync/delta.o: $(OPIEDIR)/rsync/delta.c \ |
521 | $(QPEDIR)/rsync/config_rsync.h \ | 531 | $(OPIEDIR)/rsync/config_rsync.h \ |
522 | $(QPEDIR)/rsync/config_linux.h \ | 532 | $(OPIEDIR)/rsync/config_linux.h \ |
523 | $(QPEDIR)/rsync/rsync.h \ | 533 | $(OPIEDIR)/rsync/rsync.h \ |
524 | $(QPEDIR)/rsync/emit.h \ | 534 | $(OPIEDIR)/rsync/emit.h \ |
525 | $(QPEDIR)/rsync/stream.h \ | 535 | $(OPIEDIR)/rsync/stream.h \ |
526 | $(QPEDIR)/rsync/util.h \ | 536 | $(OPIEDIR)/rsync/util.h \ |
527 | $(QPEDIR)/rsync/sumset.h \ | 537 | $(OPIEDIR)/rsync/sumset.h \ |
528 | $(QPEDIR)/rsync/job.h \ | 538 | $(OPIEDIR)/rsync/job.h \ |
529 | $(QPEDIR)/rsync/trace.h \ | 539 | $(OPIEDIR)/rsync/trace.h \ |
530 | $(QPEDIR)/rsync/checksum.h \ | 540 | $(OPIEDIR)/rsync/checksum.h \ |
531 | $(QPEDIR)/rsync/search.h \ | 541 | $(OPIEDIR)/rsync/search.h \ |
532 | $(QPEDIR)/rsync/types.h | 542 | $(OPIEDIR)/rsync/types.h |
533 | 543 | ||
534 | $(QPEDIR)/rsync/emit.o: $(QPEDIR)/rsync/emit.c \ | 544 | $(OPIEDIR)/rsync/emit.o: $(OPIEDIR)/rsync/emit.c \ |
535 | $(QPEDIR)/rsync/config_rsync.h \ | 545 | $(OPIEDIR)/rsync/config_rsync.h \ |
536 | $(QPEDIR)/rsync/config_linux.h \ | 546 | $(OPIEDIR)/rsync/config_linux.h \ |
537 | $(QPEDIR)/rsync/rsync.h \ | 547 | $(OPIEDIR)/rsync/rsync.h \ |
538 | $(QPEDIR)/rsync/command.h \ | 548 | $(OPIEDIR)/rsync/command.h \ |
539 | $(QPEDIR)/rsync/protocol.h \ | 549 | $(OPIEDIR)/rsync/protocol.h \ |
540 | $(QPEDIR)/rsync/trace.h \ | 550 | $(OPIEDIR)/rsync/trace.h \ |
541 | $(QPEDIR)/rsync/emit.h \ | 551 | $(OPIEDIR)/rsync/emit.h \ |
542 | $(QPEDIR)/rsync/prototab.h \ | 552 | $(OPIEDIR)/rsync/prototab.h \ |
543 | $(QPEDIR)/rsync/netint.h \ | 553 | $(OPIEDIR)/rsync/netint.h \ |
544 | $(QPEDIR)/rsync/sumset.h \ | 554 | $(OPIEDIR)/rsync/sumset.h \ |
545 | $(QPEDIR)/rsync/job.h | 555 | $(OPIEDIR)/rsync/job.h |
546 | 556 | ||
547 | $(QPEDIR)/rsync/hex.o: $(QPEDIR)/rsync/hex.c \ | 557 | $(OPIEDIR)/rsync/hex.o: $(OPIEDIR)/rsync/hex.c \ |
548 | $(QPEDIR)/rsync/config_rsync.h \ | 558 | $(OPIEDIR)/rsync/config_rsync.h \ |
549 | $(QPEDIR)/rsync/config_linux.h \ | 559 | $(OPIEDIR)/rsync/config_linux.h \ |
550 | $(QPEDIR)/rsync/rsync.h | 560 | $(OPIEDIR)/rsync/rsync.h |
551 | 561 | ||
552 | $(QPEDIR)/rsync/job.o: $(QPEDIR)/rsync/job.c \ | 562 | $(OPIEDIR)/rsync/job.o: $(OPIEDIR)/rsync/job.c \ |
553 | $(QPEDIR)/rsync/config_rsync.h \ | 563 | $(OPIEDIR)/rsync/config_rsync.h \ |
554 | $(QPEDIR)/rsync/config_linux.h \ | 564 | $(OPIEDIR)/rsync/config_linux.h \ |
555 | $(QPEDIR)/rsync/rsync.h \ | 565 | $(OPIEDIR)/rsync/rsync.h \ |
556 | $(QPEDIR)/rsync/stream.h \ | 566 | $(OPIEDIR)/rsync/stream.h \ |
557 | $(QPEDIR)/rsync/util.h \ | 567 | $(OPIEDIR)/rsync/util.h \ |
558 | $(QPEDIR)/rsync/sumset.h \ | 568 | $(OPIEDIR)/rsync/sumset.h \ |
559 | $(QPEDIR)/rsync/job.h \ | 569 | $(OPIEDIR)/rsync/job.h \ |
560 | $(QPEDIR)/rsync/trace.h | 570 | $(OPIEDIR)/rsync/trace.h |
561 | 571 | ||
562 | $(QPEDIR)/rsync/mdfour.o: $(QPEDIR)/rsync/mdfour.c \ | 572 | $(OPIEDIR)/rsync/mdfour.o: $(OPIEDIR)/rsync/mdfour.c \ |
563 | $(QPEDIR)/rsync/config_rsync.h \ | 573 | $(OPIEDIR)/rsync/config_rsync.h \ |
564 | $(QPEDIR)/rsync/config_linux.h \ | 574 | $(OPIEDIR)/rsync/config_linux.h \ |
565 | $(QPEDIR)/rsync/rsync.h \ | 575 | $(OPIEDIR)/rsync/rsync.h \ |
566 | $(QPEDIR)/rsync/trace.h \ | 576 | $(OPIEDIR)/rsync/trace.h \ |
567 | $(QPEDIR)/rsync/types.h | 577 | $(OPIEDIR)/rsync/types.h |
568 | 578 | ||
569 | $(QPEDIR)/rsync/mksum.o: $(QPEDIR)/rsync/mksum.c \ | 579 | $(OPIEDIR)/rsync/mksum.o: $(OPIEDIR)/rsync/mksum.c \ |
570 | $(QPEDIR)/rsync/config_rsync.h \ | 580 | $(OPIEDIR)/rsync/config_rsync.h \ |
571 | $(QPEDIR)/rsync/config_linux.h \ | 581 | $(OPIEDIR)/rsync/config_linux.h \ |
572 | $(QPEDIR)/rsync/rsync.h \ | 582 | $(OPIEDIR)/rsync/rsync.h \ |
573 | $(QPEDIR)/rsync/stream.h \ | 583 | $(OPIEDIR)/rsync/stream.h \ |
574 | $(QPEDIR)/rsync/util.h \ | 584 | $(OPIEDIR)/rsync/util.h \ |
575 | $(QPEDIR)/rsync/sumset.h \ | 585 | $(OPIEDIR)/rsync/sumset.h \ |
576 | $(QPEDIR)/rsync/job.h \ | 586 | $(OPIEDIR)/rsync/job.h \ |
577 | $(QPEDIR)/rsync/protocol.h \ | 587 | $(OPIEDIR)/rsync/protocol.h \ |
578 | $(QPEDIR)/rsync/netint.h \ | 588 | $(OPIEDIR)/rsync/netint.h \ |
579 | $(QPEDIR)/rsync/trace.h \ | 589 | $(OPIEDIR)/rsync/trace.h \ |
580 | $(QPEDIR)/rsync/checksum.h | 590 | $(OPIEDIR)/rsync/checksum.h |
581 | 591 | ||
582 | $(QPEDIR)/rsync/msg.o: $(QPEDIR)/rsync/msg.c \ | 592 | $(OPIEDIR)/rsync/msg.o: $(OPIEDIR)/rsync/msg.c \ |
583 | $(QPEDIR)/rsync/config_rsync.h \ | 593 | $(OPIEDIR)/rsync/config_rsync.h \ |
584 | $(QPEDIR)/rsync/config_linux.h \ | 594 | $(OPIEDIR)/rsync/config_linux.h \ |
585 | $(QPEDIR)/rsync/rsync.h | 595 | $(OPIEDIR)/rsync/rsync.h |
586 | 596 | ||
587 | $(QPEDIR)/rsync/netint.o: $(QPEDIR)/rsync/netint.c \ | 597 | $(OPIEDIR)/rsync/netint.o: $(OPIEDIR)/rsync/netint.c \ |
588 | $(QPEDIR)/rsync/config_rsync.h \ | 598 | $(OPIEDIR)/rsync/config_rsync.h \ |
589 | $(QPEDIR)/rsync/config_linux.h \ | 599 | $(OPIEDIR)/rsync/config_linux.h \ |
590 | $(QPEDIR)/rsync/rsync.h \ | 600 | $(OPIEDIR)/rsync/rsync.h \ |
591 | $(QPEDIR)/rsync/job.h \ | 601 | $(OPIEDIR)/rsync/job.h \ |
592 | $(QPEDIR)/rsync/netint.h \ | 602 | $(OPIEDIR)/rsync/netint.h \ |
593 | $(QPEDIR)/rsync/trace.h \ | 603 | $(OPIEDIR)/rsync/trace.h \ |
594 | $(QPEDIR)/rsync/stream.h | 604 | $(OPIEDIR)/rsync/stream.h |
595 | 605 | ||
596 | $(QPEDIR)/rsync/patch.o: $(QPEDIR)/rsync/patch.c \ | 606 | $(OPIEDIR)/rsync/patch.o: $(OPIEDIR)/rsync/patch.c \ |
597 | $(QPEDIR)/rsync/config_rsync.h \ | 607 | $(OPIEDIR)/rsync/config_rsync.h \ |
598 | $(QPEDIR)/rsync/config_linux.h \ | 608 | $(OPIEDIR)/rsync/config_linux.h \ |
599 | $(QPEDIR)/rsync/rsync.h \ | 609 | $(OPIEDIR)/rsync/rsync.h \ |
600 | $(QPEDIR)/rsync/util.h \ | 610 | $(OPIEDIR)/rsync/util.h \ |
601 | $(QPEDIR)/rsync/trace.h \ | 611 | $(OPIEDIR)/rsync/trace.h \ |
602 | $(QPEDIR)/rsync/protocol.h \ | 612 | $(OPIEDIR)/rsync/protocol.h \ |
603 | $(QPEDIR)/rsync/netint.h \ | 613 | $(OPIEDIR)/rsync/netint.h \ |
604 | $(QPEDIR)/rsync/command.h \ | 614 | $(OPIEDIR)/rsync/command.h \ |
605 | $(QPEDIR)/rsync/sumset.h \ | 615 | $(OPIEDIR)/rsync/sumset.h \ |
606 | $(QPEDIR)/rsync/prototab.h \ | 616 | $(OPIEDIR)/rsync/prototab.h \ |
607 | $(QPEDIR)/rsync/stream.h \ | 617 | $(OPIEDIR)/rsync/stream.h \ |
608 | $(QPEDIR)/rsync/job.h | 618 | $(OPIEDIR)/rsync/job.h |
609 | 619 | ||
610 | $(QPEDIR)/rsync/prototab.o: $(QPEDIR)/rsync/prototab.c \ | 620 | $(OPIEDIR)/rsync/prototab.o: $(OPIEDIR)/rsync/prototab.c \ |
611 | $(QPEDIR)/rsync/config_rsync.h \ | 621 | $(OPIEDIR)/rsync/config_rsync.h \ |
612 | $(QPEDIR)/rsync/config_linux.h \ | 622 | $(OPIEDIR)/rsync/config_linux.h \ |
613 | $(QPEDIR)/rsync/rsync.h \ | 623 | $(OPIEDIR)/rsync/rsync.h \ |
614 | $(QPEDIR)/rsync/protocol.h \ | 624 | $(OPIEDIR)/rsync/protocol.h \ |
615 | $(QPEDIR)/rsync/command.h \ | 625 | $(OPIEDIR)/rsync/command.h \ |
616 | $(QPEDIR)/rsync/prototab.h | 626 | $(OPIEDIR)/rsync/prototab.h |
617 | 627 | ||
618 | $(QPEDIR)/rsync/readsums.o: $(QPEDIR)/rsync/readsums.c \ | 628 | $(OPIEDIR)/rsync/readsums.o: $(OPIEDIR)/rsync/readsums.c \ |
619 | $(QPEDIR)/rsync/config_rsync.h \ | 629 | $(OPIEDIR)/rsync/config_rsync.h \ |
620 | $(QPEDIR)/rsync/config_linux.h \ | 630 | $(OPIEDIR)/rsync/config_linux.h \ |
621 | $(QPEDIR)/rsync/rsync.h \ | 631 | $(OPIEDIR)/rsync/rsync.h \ |
622 | $(QPEDIR)/rsync/sumset.h \ | 632 | $(OPIEDIR)/rsync/sumset.h \ |
623 | $(QPEDIR)/rsync/job.h \ | 633 | $(OPIEDIR)/rsync/job.h \ |
624 | $(QPEDIR)/rsync/trace.h \ | 634 | $(OPIEDIR)/rsync/trace.h \ |
625 | $(QPEDIR)/rsync/netint.h \ | 635 | $(OPIEDIR)/rsync/netint.h \ |
626 | $(QPEDIR)/rsync/protocol.h \ | 636 | $(OPIEDIR)/rsync/protocol.h \ |
627 | $(QPEDIR)/rsync/util.h \ | 637 | $(OPIEDIR)/rsync/util.h \ |
628 | $(QPEDIR)/rsync/stream.h | 638 | $(OPIEDIR)/rsync/stream.h |
629 | 639 | ||
630 | $(QPEDIR)/rsync/scoop.o: $(QPEDIR)/rsync/scoop.c \ | 640 | $(OPIEDIR)/rsync/scoop.o: $(OPIEDIR)/rsync/scoop.c \ |
631 | $(QPEDIR)/rsync/config_rsync.h \ | 641 | $(OPIEDIR)/rsync/config_rsync.h \ |
632 | $(QPEDIR)/rsync/config_linux.h \ | 642 | $(OPIEDIR)/rsync/config_linux.h \ |
633 | $(QPEDIR)/rsync/rsync.h \ | 643 | $(OPIEDIR)/rsync/rsync.h \ |
634 | $(QPEDIR)/rsync/job.h \ | 644 | $(OPIEDIR)/rsync/job.h \ |
635 | $(QPEDIR)/rsync/stream.h \ | 645 | $(OPIEDIR)/rsync/stream.h \ |
636 | $(QPEDIR)/rsync/trace.h \ | 646 | $(OPIEDIR)/rsync/trace.h \ |
637 | $(QPEDIR)/rsync/util.h | 647 | $(OPIEDIR)/rsync/util.h |
638 | 648 | ||
639 | $(QPEDIR)/rsync/search.o: $(QPEDIR)/rsync/search.c \ | 649 | $(OPIEDIR)/rsync/search.o: $(OPIEDIR)/rsync/search.c \ |
640 | $(QPEDIR)/rsync/config_rsync.h \ | 650 | $(OPIEDIR)/rsync/config_rsync.h \ |
641 | $(QPEDIR)/rsync/config_linux.h \ | 651 | $(OPIEDIR)/rsync/config_linux.h \ |
642 | $(QPEDIR)/rsync/rsync.h \ | 652 | $(OPIEDIR)/rsync/rsync.h \ |
643 | $(QPEDIR)/rsync/trace.h \ | 653 | $(OPIEDIR)/rsync/trace.h \ |
644 | $(QPEDIR)/rsync/util.h \ | 654 | $(OPIEDIR)/rsync/util.h \ |
645 | $(QPEDIR)/rsync/sumset.h \ | 655 | $(OPIEDIR)/rsync/sumset.h \ |
646 | $(QPEDIR)/rsync/search.h \ | 656 | $(OPIEDIR)/rsync/search.h \ |
647 | $(QPEDIR)/rsync/checksum.h | 657 | $(OPIEDIR)/rsync/checksum.h |
648 | 658 | ||
649 | $(QPEDIR)/rsync/stats.o: $(QPEDIR)/rsync/stats.c \ | 659 | $(OPIEDIR)/rsync/stats.o: $(OPIEDIR)/rsync/stats.c \ |
650 | $(QPEDIR)/rsync/config_rsync.h \ | 660 | $(OPIEDIR)/rsync/config_rsync.h \ |
651 | $(QPEDIR)/rsync/config_linux.h \ | 661 | $(OPIEDIR)/rsync/config_linux.h \ |
652 | $(QPEDIR)/rsync/rsync.h \ | 662 | $(OPIEDIR)/rsync/rsync.h \ |
653 | $(QPEDIR)/rsync/trace.h | 663 | $(OPIEDIR)/rsync/trace.h |
654 | 664 | ||
655 | $(QPEDIR)/rsync/stream.o: $(QPEDIR)/rsync/stream.c \ | 665 | $(OPIEDIR)/rsync/stream.o: $(OPIEDIR)/rsync/stream.c \ |
656 | $(QPEDIR)/rsync/config_rsync.h \ | 666 | $(OPIEDIR)/rsync/config_rsync.h \ |
657 | $(QPEDIR)/rsync/config_linux.h \ | 667 | $(OPIEDIR)/rsync/config_linux.h \ |
658 | $(QPEDIR)/rsync/rsync.h \ | 668 | $(OPIEDIR)/rsync/rsync.h \ |
659 | $(QPEDIR)/rsync/stream.h \ | 669 | $(OPIEDIR)/rsync/stream.h \ |
660 | $(QPEDIR)/rsync/util.h \ | 670 | $(OPIEDIR)/rsync/util.h \ |
661 | $(QPEDIR)/rsync/trace.h | 671 | $(OPIEDIR)/rsync/trace.h |
662 | 672 | ||
663 | $(QPEDIR)/rsync/sumset.o: $(QPEDIR)/rsync/sumset.c \ | 673 | $(OPIEDIR)/rsync/sumset.o: $(OPIEDIR)/rsync/sumset.c \ |
664 | $(QPEDIR)/rsync/config_rsync.h \ | 674 | $(OPIEDIR)/rsync/config_rsync.h \ |
665 | $(QPEDIR)/rsync/config_linux.h \ | 675 | $(OPIEDIR)/rsync/config_linux.h \ |
666 | $(QPEDIR)/rsync/rsync.h \ | 676 | $(OPIEDIR)/rsync/rsync.h \ |
667 | $(QPEDIR)/rsync/sumset.h \ | 677 | $(OPIEDIR)/rsync/sumset.h \ |
668 | $(QPEDIR)/rsync/util.h \ | 678 | $(OPIEDIR)/rsync/util.h \ |
669 | $(QPEDIR)/rsync/trace.h | 679 | $(OPIEDIR)/rsync/trace.h |
670 | 680 | ||
671 | $(QPEDIR)/rsync/trace.o: $(QPEDIR)/rsync/trace.c \ | 681 | $(OPIEDIR)/rsync/trace.o: $(OPIEDIR)/rsync/trace.c \ |
672 | $(QPEDIR)/rsync/config_rsync.h \ | 682 | $(OPIEDIR)/rsync/config_rsync.h \ |
673 | $(QPEDIR)/rsync/config_linux.h \ | 683 | $(OPIEDIR)/rsync/config_linux.h \ |
674 | $(QPEDIR)/rsync/rsync.h \ | 684 | $(OPIEDIR)/rsync/rsync.h \ |
675 | $(QPEDIR)/rsync/util.h \ | 685 | $(OPIEDIR)/rsync/util.h \ |
676 | $(QPEDIR)/rsync/trace.h | 686 | $(OPIEDIR)/rsync/trace.h |
677 | 687 | ||
678 | $(QPEDIR)/rsync/tube.o: $(QPEDIR)/rsync/tube.c \ | 688 | $(OPIEDIR)/rsync/tube.o: $(OPIEDIR)/rsync/tube.c \ |
679 | $(QPEDIR)/rsync/config_rsync.h \ | 689 | $(OPIEDIR)/rsync/config_rsync.h \ |
680 | $(QPEDIR)/rsync/config_linux.h \ | 690 | $(OPIEDIR)/rsync/config_linux.h \ |
681 | $(QPEDIR)/rsync/rsync.h \ | 691 | $(OPIEDIR)/rsync/rsync.h \ |
682 | $(QPEDIR)/rsync/trace.h \ | 692 | $(OPIEDIR)/rsync/trace.h \ |
683 | $(QPEDIR)/rsync/util.h \ | 693 | $(OPIEDIR)/rsync/util.h \ |
684 | $(QPEDIR)/rsync/job.h \ | 694 | $(OPIEDIR)/rsync/job.h \ |
685 | $(QPEDIR)/rsync/stream.h | 695 | $(OPIEDIR)/rsync/stream.h |
686 | 696 | ||
687 | $(QPEDIR)/rsync/util.o: $(QPEDIR)/rsync/util.c \ | 697 | $(OPIEDIR)/rsync/util.o: $(OPIEDIR)/rsync/util.c \ |
688 | $(QPEDIR)/rsync/config_rsync.h \ | 698 | $(OPIEDIR)/rsync/config_rsync.h \ |
689 | $(QPEDIR)/rsync/config_linux.h \ | 699 | $(OPIEDIR)/rsync/config_linux.h \ |
690 | $(QPEDIR)/rsync/util.h \ | 700 | $(OPIEDIR)/rsync/util.h \ |
691 | $(QPEDIR)/rsync/rsync.h \ | 701 | $(OPIEDIR)/rsync/rsync.h \ |
692 | $(QPEDIR)/rsync/trace.h | 702 | $(OPIEDIR)/rsync/trace.h |
693 | 703 | ||
694 | $(QPEDIR)/rsync/version.o: $(QPEDIR)/rsync/version.c \ | 704 | $(OPIEDIR)/rsync/version.o: $(OPIEDIR)/rsync/version.c \ |
695 | $(QPEDIR)/rsync/config_rsync.h \ | 705 | $(OPIEDIR)/rsync/config_rsync.h \ |
696 | $(QPEDIR)/rsync/config_linux.h \ | 706 | $(OPIEDIR)/rsync/config_linux.h \ |
697 | $(QPEDIR)/rsync/rsync.h | 707 | $(OPIEDIR)/rsync/rsync.h |
698 | 708 | ||
699 | $(QPEDIR)/rsync/whole.o: $(QPEDIR)/rsync/whole.c \ | 709 | $(OPIEDIR)/rsync/whole.o: $(OPIEDIR)/rsync/whole.c \ |
700 | $(QPEDIR)/rsync/config_rsync.h \ | 710 | $(OPIEDIR)/rsync/config_rsync.h \ |
701 | $(QPEDIR)/rsync/config_linux.h \ | 711 | $(OPIEDIR)/rsync/config_linux.h \ |
702 | $(QPEDIR)/rsync/rsync.h \ | 712 | $(OPIEDIR)/rsync/rsync.h \ |
703 | $(QPEDIR)/rsync/trace.h \ | 713 | $(OPIEDIR)/rsync/trace.h \ |
704 | $(QPEDIR)/rsync/fileutil.h \ | 714 | $(OPIEDIR)/rsync/fileutil.h \ |
705 | $(QPEDIR)/rsync/sumset.h \ | 715 | $(OPIEDIR)/rsync/sumset.h \ |
706 | $(QPEDIR)/rsync/job.h \ | 716 | $(OPIEDIR)/rsync/job.h \ |
707 | $(QPEDIR)/rsync/buf.h \ | 717 | $(OPIEDIR)/rsync/buf.h \ |
708 | $(QPEDIR)/rsync/whole.h \ | 718 | $(OPIEDIR)/rsync/whole.h \ |
709 | $(QPEDIR)/rsync/util.h | 719 | $(OPIEDIR)/rsync/util.h |
710 | 720 | ||
711 | $(QPEDIR)/rsync/qrsync.o: $(QPEDIR)/rsync/qrsync.cpp \ | 721 | $(OPIEDIR)/rsync/qrsync.o: $(OPIEDIR)/rsync/qrsync.cpp \ |
712 | $(QPEDIR)/rsync/qrsync.h \ | 722 | $(OPIEDIR)/rsync/qrsync.h \ |
713 | $(QPEDIR)/rsync/rsync.h | 723 | $(OPIEDIR)/rsync/rsync.h |
714 | 724 | ||
715 | shutdown.h: shutdown.ui | 725 | shutdown.h: shutdown.ui |
716 | $(UIC) shutdown.ui -o $(INTERFACE_DECL_PATH)/shutdown.h | 726 | $(UIC) shutdown.ui -o $(INTERFACE_DECL_PATH)/shutdown.h |
717 | 727 | ||
718 | shutdown.cpp: shutdown.ui | 728 | shutdown.cpp: shutdown.ui |
719 | $(UIC) shutdown.ui -i shutdown.h -o shutdown.cpp | 729 | $(UIC) shutdown.ui -i shutdown.h -o shutdown.cpp |
720 | 730 | ||
721 | syncdialog.h: syncdialog.ui | 731 | syncdialog.h: syncdialog.ui |
722 | $(UIC) syncdialog.ui -o $(INTERFACE_DECL_PATH)/syncdialog.h | 732 | $(UIC) syncdialog.ui -o $(INTERFACE_DECL_PATH)/syncdialog.h |
723 | 733 | ||
724 | syncdialog.cpp: syncdialog.ui | 734 | syncdialog.cpp: syncdialog.ui |
725 | $(UIC) syncdialog.ui -i syncdialog.h -o syncdialog.cpp | 735 | $(UIC) syncdialog.ui -i syncdialog.h -o syncdialog.cpp |
726 | 736 | ||
727 | shutdown.o: shutdown.cpp \ | 737 | shutdown.o: shutdown.cpp |
728 | shutdown.h | ||
729 | 738 | ||
730 | syncdialog.o: syncdialog.cpp | 739 | syncdialog.o: syncdialog.cpp |
731 | 740 | ||
732 | moc_background.o: moc_background.cpp \ | 741 | moc_background.o: moc_background.cpp \ |
733 | background.h | 742 | background.h |
734 | 743 | ||
735 | moc_desktop.o: moc_desktop.cpp \ | 744 | moc_desktop.o: moc_desktop.cpp \ |
736 | desktop.h \ | 745 | desktop.h \ |
737 | shutdownimpl.h \ | 746 | shutdownimpl.h \ |
738 | shutdown.h \ | 747 | shutdown.h \ |
739 | $(QPEDIR)/include/qpe/qpeapplication.h | 748 | $(OPIEDIR)/include/qpe/qpeapplication.h |
740 | 749 | ||
741 | moc_info.o: moc_info.cpp \ | 750 | moc_info.o: moc_info.cpp \ |
742 | info.h \ | 751 | info.h \ |
743 | background.h | 752 | background.h |
744 | 753 | ||
745 | moc_appicons.o: moc_appicons.cpp \ | 754 | moc_appicons.o: moc_appicons.cpp \ |
746 | appicons.h | 755 | appicons.h |
747 | 756 | ||
748 | moc_taskbar.o: moc_taskbar.cpp \ | 757 | moc_taskbar.o: moc_taskbar.cpp \ |
749 | taskbar.h \ | 758 | taskbar.h \ |
750 | $(QPEDIR)/include/qpe/custom.h | 759 | $(OPIEDIR)/include/qpe/custom.h |
751 | 760 | ||
752 | moc_sidething.o: moc_sidething.cpp \ | 761 | moc_sidething.o: moc_sidething.cpp \ |
753 | sidething.h \ | 762 | sidething.h \ |
754 | startmenu.h | 763 | startmenu.h |
755 | 764 | ||
756 | moc_inputmethods.o: moc_inputmethods.cpp \ | 765 | moc_inputmethods.o: moc_inputmethods.cpp \ |
757 | inputmethods.h \ | 766 | inputmethods.h \ |
758 | $(QPEDIR)/include/qpe/inputmethodinterface.h \ | 767 | $(OPIEDIR)/include/qpe/inputmethodinterface.h \ |
759 | $(QPEDIR)/include/qpe/qcom.h \ | 768 | $(OPIEDIR)/include/qpe/qcom.h \ |
760 | $(QPEDIR)/include/qpe/quuid.h | 769 | $(OPIEDIR)/include/qpe/quuid.h |
761 | 770 | ||
762 | moc_systray.o: moc_systray.cpp \ | 771 | moc_systray.o: moc_systray.cpp \ |
763 | systray.h \ | 772 | systray.h \ |
764 | $(QPEDIR)/include/qpe/taskbarappletinterface.h \ | 773 | $(OPIEDIR)/include/qpe/taskbarappletinterface.h \ |
765 | $(QPEDIR)/include/qpe/qcom.h \ | 774 | $(OPIEDIR)/include/qpe/qcom.h \ |
766 | $(QPEDIR)/include/qpe/quuid.h | 775 | $(OPIEDIR)/include/qpe/quuid.h |
767 | 776 | ||
768 | moc_shutdownimpl.o: moc_shutdownimpl.cpp \ | 777 | moc_shutdownimpl.o: moc_shutdownimpl.cpp \ |
769 | shutdownimpl.h \ | 778 | shutdownimpl.h \ |
770 | shutdown.h | 779 | shutdown.h |
771 | 780 | ||
772 | moc_launcher.o: moc_launcher.cpp \ | 781 | moc_launcher.o: moc_launcher.cpp \ |
773 | launcher.h \ | 782 | launcher.h \ |
774 | launcherview.h \ | 783 | launcherview.h \ |
775 | $(QPEDIR)/include/qpe/storage.h | 784 | $(OPIEDIR)/include/qpe/storage.h |
776 | 785 | ||
777 | moc_launcherview.o: moc_launcherview.cpp \ | 786 | moc_launcherview.o: moc_launcherview.cpp \ |
778 | launcherview.h \ | 787 | launcherview.h \ |
779 | $(QPEDIR)/include/qpe/storage.h | 788 | $(OPIEDIR)/include/qpe/storage.h |
780 | 789 | ||
781 | ../calibrate/moc_calibrate.o: ../calibrate/moc_calibrate.cpp \ | 790 | ../calibrate/moc_calibrate.o: ../calibrate/moc_calibrate.cpp \ |
782 | ../calibrate/calibrate.h | 791 | ../calibrate/calibrate.h |
783 | 792 | ||
784 | moc_startmenu.o: moc_startmenu.cpp \ | 793 | moc_startmenu.o: moc_startmenu.cpp \ |
785 | startmenu.h | 794 | startmenu.h |
786 | 795 | ||
787 | moc_transferserver.o: moc_transferserver.cpp \ | 796 | moc_transferserver.o: moc_transferserver.cpp \ |
788 | transferserver.h | 797 | transferserver.h |
789 | 798 | ||
790 | moc_qcopbridge.o: moc_qcopbridge.cpp \ | 799 | moc_qcopbridge.o: moc_qcopbridge.cpp \ |
791 | qcopbridge.h | 800 | qcopbridge.h |
792 | 801 | ||
793 | moc_packageslave.o: moc_packageslave.cpp \ | 802 | moc_packageslave.o: moc_packageslave.cpp \ |
794 | packageslave.h | 803 | packageslave.h |
795 | 804 | ||
796 | moc_irserver.o: moc_irserver.cpp \ | 805 | moc_irserver.o: moc_irserver.cpp \ |
797 | irserver.h | 806 | irserver.h |
798 | 807 | ||
799 | moc_shutdown.o: appicons.moc \ | 808 | moc_shutdown.o: appicons.moc \ |
800 | appicons.cpp \ | 809 | appicons.cpp \ |
801 | appicons.h \ | 810 | appicons.h \ |
802 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h | 811 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h |
803 | 812 | ||
804 | moc_syncdialog.o: moc_shutdown.cpp \ | 813 | moc_syncdialog.o: moc_shutdown.cpp \ |
805 | shutdown.h | 814 | shutdown.h |
806 | 815 | ||
807 | moc_background.cpp: background.h | 816 | moc_background.cpp: background.h |
808 | $(MOC) background.h -o moc_background.cpp | 817 | $(MOC) background.h -o moc_background.cpp |
809 | 818 | ||
810 | moc_desktop.cpp: desktop.h | 819 | moc_desktop.cpp: desktop.h |
811 | $(MOC) desktop.h -o moc_desktop.cpp | 820 | $(MOC) desktop.h -o moc_desktop.cpp |
812 | 821 | ||
813 | moc_info.cpp: info.h | 822 | moc_info.cpp: info.h |
814 | $(MOC) info.h -o moc_info.cpp | 823 | $(MOC) info.h -o moc_info.cpp |
diff --git a/core/launcher/launcher.pro b/core/launcher/launcher.pro index 7d7c9ac..0078faf 100644 --- a/core/launcher/launcher.pro +++ b/core/launcher/launcher.pro | |||
@@ -1,110 +1,110 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | 2 | ||
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | 4 | ||
5 | DESTDIR = $(QPEDIR)/bin | 5 | DESTDIR = $(OPIEDIR)/bin |
6 | 6 | ||
7 | HEADERS = background.h \ | 7 | HEADERS = background.h \ |
8 | desktop.h \ | 8 | desktop.h \ |
9 | info.h \ | 9 | info.h \ |
10 | appicons.h \ | 10 | appicons.h \ |
11 | taskbar.h \ | 11 | taskbar.h \ |
12 | sidething.h \ | 12 | sidething.h \ |
13 | mrulist.h \ | 13 | mrulist.h \ |
14 | stabmon.h \ | 14 | stabmon.h \ |
15 | inputmethods.h \ | 15 | inputmethods.h \ |
16 | systray.h \ | 16 | systray.h \ |
17 | wait.h \ | 17 | wait.h \ |
18 | shutdownimpl.h \ | 18 | shutdownimpl.h \ |
19 | launcher.h \ | 19 | launcher.h \ |
20 | launcherview.h \ | 20 | launcherview.h \ |
21 | ../calibrate/calibrate.h \ | 21 | ../calibrate/calibrate.h \ |
22 | startmenu.h \ | 22 | startmenu.h \ |
23 | transferserver.h \ | 23 | transferserver.h \ |
24 | qcopbridge.h \ | 24 | qcopbridge.h \ |
25 | packageslave.h \ | 25 | packageslave.h \ |
26 | irserver.h \ | 26 | irserver.h \ |
27 | $(QPEDIR)/rsync/buf.h \ | 27 | $(OPIEDIR)/rsync/buf.h \ |
28 | $(QPEDIR)/rsync/checksum.h \ | 28 | $(OPIEDIR)/rsync/checksum.h \ |
29 | $(QPEDIR)/rsync/command.h \ | 29 | $(OPIEDIR)/rsync/command.h \ |
30 | $(QPEDIR)/rsync/emit.h \ | 30 | $(OPIEDIR)/rsync/emit.h \ |
31 | $(QPEDIR)/rsync/job.h \ | 31 | $(OPIEDIR)/rsync/job.h \ |
32 | $(QPEDIR)/rsync/netint.h \ | 32 | $(OPIEDIR)/rsync/netint.h \ |
33 | $(QPEDIR)/rsync/protocol.h \ | 33 | $(OPIEDIR)/rsync/protocol.h \ |
34 | $(QPEDIR)/rsync/prototab.h \ | 34 | $(OPIEDIR)/rsync/prototab.h \ |
35 | $(QPEDIR)/rsync/rsync.h \ | 35 | $(OPIEDIR)/rsync/rsync.h \ |
36 | $(QPEDIR)/rsync/search.h \ | 36 | $(OPIEDIR)/rsync/search.h \ |
37 | $(QPEDIR)/rsync/stream.h \ | 37 | $(OPIEDIR)/rsync/stream.h \ |
38 | $(QPEDIR)/rsync/sumset.h \ | 38 | $(OPIEDIR)/rsync/sumset.h \ |
39 | $(QPEDIR)/rsync/trace.h \ | 39 | $(OPIEDIR)/rsync/trace.h \ |
40 | $(QPEDIR)/rsync/types.h \ | 40 | $(OPIEDIR)/rsync/types.h \ |
41 | $(QPEDIR)/rsync/util.h \ | 41 | $(OPIEDIR)/rsync/util.h \ |
42 | $(QPEDIR)/rsync/whole.h \ | 42 | $(OPIEDIR)/rsync/whole.h \ |
43 | $(QPEDIR)/rsync/config_rsync.h \ | 43 | $(OPIEDIR)/rsync/config_rsync.h \ |
44 | $(QPEDIR)/rsync/qrsync.h | 44 | $(OPIEDIR)/rsync/qrsync.h |
45 | # quicklauncher.h \ | 45 | # quicklauncher.h \ |
46 | 46 | ||
47 | SOURCES = background.cpp \ | 47 | SOURCES = background.cpp \ |
48 | desktop.cpp \ | 48 | desktop.cpp \ |
49 | info.cpp \ | 49 | info.cpp \ |
50 | appicons.cpp \ | 50 | appicons.cpp \ |
51 | taskbar.cpp \ | 51 | taskbar.cpp \ |
52 | sidething.cpp \ | 52 | sidething.cpp \ |
53 | mrulist.cpp \ | 53 | mrulist.cpp \ |
54 | stabmon.cpp \ | 54 | stabmon.cpp \ |
55 | inputmethods.cpp \ | 55 | inputmethods.cpp \ |
56 | systray.cpp \ | 56 | systray.cpp \ |
57 | wait.cpp \ | 57 | wait.cpp \ |
58 | shutdownimpl.cpp \ | 58 | shutdownimpl.cpp \ |
59 | launcher.cpp \ | 59 | launcher.cpp \ |
60 | launcherview.cpp \ | 60 | launcherview.cpp \ |
61 | $(QPEDIR)/calibrate/calibrate.cpp \ | 61 | $(OPIEDIR)/calibrate/calibrate.cpp \ |
62 | transferserver.cpp \ | 62 | transferserver.cpp \ |
63 | packageslave.cpp \ | 63 | packageslave.cpp \ |
64 | irserver.cpp \ | 64 | irserver.cpp \ |
65 | qcopbridge.cpp \ | 65 | qcopbridge.cpp \ |
66 | startmenu.cpp \ | 66 | startmenu.cpp \ |
67 | main.cpp \ | 67 | main.cpp \ |
68 | $(QPEDIR)/rsync/base64.c \ | 68 | $(OPIEDIR)/rsync/base64.c \ |
69 | $(QPEDIR)/rsync/buf.c \ | 69 | $(OPIEDIR)/rsync/buf.c \ |
70 | $(QPEDIR)/rsync/checksum.c \ | 70 | $(OPIEDIR)/rsync/checksum.c \ |
71 | $(QPEDIR)/rsync/command.c \ | 71 | $(OPIEDIR)/rsync/command.c \ |
72 | $(QPEDIR)/rsync/delta.c \ | 72 | $(OPIEDIR)/rsync/delta.c \ |
73 | $(QPEDIR)/rsync/emit.c \ | 73 | $(OPIEDIR)/rsync/emit.c \ |
74 | $(QPEDIR)/rsync/hex.c \ | 74 | $(OPIEDIR)/rsync/hex.c \ |
75 | $(QPEDIR)/rsync/job.c \ | 75 | $(OPIEDIR)/rsync/job.c \ |
76 | $(QPEDIR)/rsync/mdfour.c \ | 76 | $(OPIEDIR)/rsync/mdfour.c \ |
77 | $(QPEDIR)/rsync/mksum.c \ | 77 | $(OPIEDIR)/rsync/mksum.c \ |
78 | $(QPEDIR)/rsync/msg.c \ | 78 | $(OPIEDIR)/rsync/msg.c \ |
79 | $(QPEDIR)/rsync/netint.c \ | 79 | $(OPIEDIR)/rsync/netint.c \ |
80 | $(QPEDIR)/rsync/patch.c \ | 80 | $(OPIEDIR)/rsync/patch.c \ |
81 | $(QPEDIR)/rsync/prototab.c \ | 81 | $(OPIEDIR)/rsync/prototab.c \ |
82 | $(QPEDIR)/rsync/readsums.c \ | 82 | $(OPIEDIR)/rsync/readsums.c \ |
83 | $(QPEDIR)/rsync/scoop.c \ | 83 | $(OPIEDIR)/rsync/scoop.c \ |
84 | $(QPEDIR)/rsync/search.c \ | 84 | $(OPIEDIR)/rsync/search.c \ |
85 | $(QPEDIR)/rsync/stats.c \ | 85 | $(OPIEDIR)/rsync/stats.c \ |
86 | $(QPEDIR)/rsync/stream.c \ | 86 | $(OPIEDIR)/rsync/stream.c \ |
87 | $(QPEDIR)/rsync/sumset.c \ | 87 | $(OPIEDIR)/rsync/sumset.c \ |
88 | $(QPEDIR)/rsync/trace.c \ | 88 | $(OPIEDIR)/rsync/trace.c \ |
89 | $(QPEDIR)/rsync/tube.c \ | 89 | $(OPIEDIR)/rsync/tube.c \ |
90 | $(QPEDIR)/rsync/util.c \ | 90 | $(OPIEDIR)/rsync/util.c \ |
91 | $(QPEDIR)/rsync/version.c \ | 91 | $(OPIEDIR)/rsync/version.c \ |
92 | $(QPEDIR)/rsync/whole.c \ | 92 | $(OPIEDIR)/rsync/whole.c \ |
93 | $(QPEDIR)/rsync/qrsync.cpp | 93 | $(OPIEDIR)/rsync/qrsync.cpp |
94 | 94 | ||
95 | INTERFACES= shutdown.ui syncdialog.ui | 95 | INTERFACES= shutdown.ui syncdialog.ui |
96 | 96 | ||
97 | INCLUDEPATH += $(QPEDIR)/include | 97 | INCLUDEPATH += $(OPIEDIR)/include |
98 | DEPENDPATH+= $(QPEDIR)/include . | 98 | DEPENDPATH+= $(OPIEDIR)/include . |
99 | 99 | ||
100 | INCLUDEPATH += $(QPEDIR)/calibrate | 100 | INCLUDEPATH += $(OPIEDIR)/calibrate |
101 | DEPENDPATH+= $(QPEDIR)/calibrate | 101 | DEPENDPATH+= $(OPIEDIR)/calibrate |
102 | 102 | ||
103 | INCLUDEPATH += $(QPEDIR)/rsync | 103 | INCLUDEPATH += $(OPIEDIR)/rsync |
104 | DEPENDPATH+= $(QPEDIR)/rsync | 104 | DEPENDPATH+= $(OPIEDIR)/rsync |
105 | 105 | ||
106 | TARGET = qpe | 106 | TARGET = qpe |
107 | 107 | ||
108 | LIBS += -lqpe -lcrypt | 108 | LIBS += -lqpe -lcrypt |
109 | 109 | ||
110 | TRANSLATIONS = ../i18n/de/qpe.ts | 110 | TRANSLATIONS = ../i18n/de/qpe.ts |
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp index 024f9cc..12c2a7c 100644 --- a/core/launcher/main.cpp +++ b/core/launcher/main.cpp | |||
@@ -76,25 +76,25 @@ void initCassiopeia() | |||
76 | } else { | 76 | } else { |
77 | fprintf( stderr, "mounted /home\n" ); | 77 | fprintf( stderr, "mounted /home\n" ); |
78 | } | 78 | } |
79 | if ( mount("none","/proc","proc",0,0) ) { | 79 | if ( mount("none","/proc","proc",0,0) ) { |
80 | perror("Mounting - /proc"); | 80 | perror("Mounting - /proc"); |
81 | } else { | 81 | } else { |
82 | fprintf( stderr, "mounted /proc\n" ); | 82 | fprintf( stderr, "mounted /proc\n" ); |
83 | } | 83 | } |
84 | if ( mount("none","/mnt","shm",0,0) ) { | 84 | if ( mount("none","/mnt","shm",0,0) ) { |
85 | perror("Mounting - shm"); | 85 | perror("Mounting - shm"); |
86 | } | 86 | } |
87 | setenv( "QTDIR", "/", 1 ); | 87 | setenv( "QTDIR", "/", 1 ); |
88 | setenv( "QPEDIR", "/", 1 ); | 88 | setenv( "OPIEDIR", "/", 1 ); |
89 | setenv( "HOME", "/home", 1 ); | 89 | setenv( "HOME", "/home", 1 ); |
90 | mkdir( "/home/Documents", 0755 ); | 90 | mkdir( "/home/Documents", 0755 ); |
91 | 91 | ||
92 | // set a reasonable starting date | 92 | // set a reasonable starting date |
93 | QDateTime dt( QDate( 2001, 3, 15 ) ); | 93 | QDateTime dt( QDate( 2001, 3, 15 ) ); |
94 | QDateTime now = QDateTime::currentDateTime(); | 94 | QDateTime now = QDateTime::currentDateTime(); |
95 | int change = now.secsTo( dt ); | 95 | int change = now.secsTo( dt ); |
96 | 96 | ||
97 | time_t t = ::time(0); | 97 | time_t t = ::time(0); |
98 | t += change; | 98 | t += change; |
99 | stime(&t); | 99 | stime(&t); |
100 | 100 | ||
diff --git a/core/multimedia/opieplayer/Makefile.in b/core/multimedia/opieplayer/Makefile.in index 5fca66e..6e007ec 100644 --- a/core/multimedia/opieplayer/Makefile.in +++ b/core/multimedia/opieplayer/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) -DQCONFIG=\"qpe\" | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) -DQCONFIG=\"qpe\" | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe -lpthread $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe -lpthread $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= mpegplayer | 21 | TARGET= mpegplayer |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =loopcontrol.h \ | 26 | HEADERS =loopcontrol.h \ |
27 | mediaplayerplugininterface.h \ | 27 | mediaplayerplugininterface.h \ |
28 | playlistselection.h \ | 28 | playlistselection.h \ |
29 | mediaplayerstate.h \ | 29 | mediaplayerstate.h \ |
@@ -126,137 +126,137 @@ listaddonentmodules: | |||
126 | REQUIRES= | 126 | REQUIRES= |
127 | 127 | ||
128 | ####### Sub-libraries | 128 | ####### Sub-libraries |
129 | 129 | ||
130 | 130 | ||
131 | ###### Combined headers | 131 | ###### Combined headers |
132 | 132 | ||
133 | 133 | ||
134 | 134 | ||
135 | ####### Compile | 135 | ####### Compile |
136 | 136 | ||
137 | main.o: main.cpp \ | 137 | main.o: main.cpp \ |
138 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 138 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
139 | mediaplayerstate.h \ | 139 | mediaplayerstate.h \ |
140 | playlistwidget.h \ | 140 | playlistwidget.h \ |
141 | $(QPEDIR)/include/qpe/applnk.h \ | 141 | $(OPIEDIR)/include/qpe/applnk.h \ |
142 | audiowidget.h \ | 142 | audiowidget.h \ |
143 | videowidget.h \ | 143 | videowidget.h \ |
144 | loopcontrol.h \ | 144 | loopcontrol.h \ |
145 | mediaplayer.h \ | 145 | mediaplayer.h \ |
146 | $(QPEDIR)/include/qpe/qlibrary.h \ | 146 | $(OPIEDIR)/include/qpe/qlibrary.h \ |
147 | $(QPEDIR)/include/qpe/qcom.h \ | 147 | $(OPIEDIR)/include/qpe/qcom.h \ |
148 | $(QPEDIR)/include/qpe/quuid.h \ | 148 | $(OPIEDIR)/include/qpe/quuid.h \ |
149 | mediaplayerplugininterface.h | 149 | mediaplayerplugininterface.h |
150 | 150 | ||
151 | loopcontrol.o: loopcontrol.cpp \ | 151 | loopcontrol.o: loopcontrol.cpp \ |
152 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 152 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
153 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 153 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
154 | loopcontrol.h \ | 154 | loopcontrol.h \ |
155 | videowidget.h \ | 155 | videowidget.h \ |
156 | audiodevice.h \ | 156 | audiodevice.h \ |
157 | mediaplayerplugininterface.h \ | 157 | mediaplayerplugininterface.h \ |
158 | $(QPEDIR)/include/qpe/qcom.h \ | 158 | $(OPIEDIR)/include/qpe/qcom.h \ |
159 | $(QPEDIR)/include/qpe/quuid.h \ | 159 | $(OPIEDIR)/include/qpe/quuid.h \ |
160 | mediaplayerstate.h | 160 | mediaplayerstate.h |
161 | 161 | ||
162 | playlistselection.o: playlistselection.cpp \ | 162 | playlistselection.o: playlistselection.cpp \ |
163 | $(QPEDIR)/include/qpe/applnk.h \ | 163 | $(OPIEDIR)/include/qpe/applnk.h \ |
164 | $(QPEDIR)/include/qpe/resource.h \ | 164 | $(OPIEDIR)/include/qpe/resource.h \ |
165 | playlistselection.h | 165 | playlistselection.h |
166 | 166 | ||
167 | mediaplayerstate.o: mediaplayerstate.cpp \ | 167 | mediaplayerstate.o: mediaplayerstate.cpp \ |
168 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 168 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
169 | $(QPEDIR)/include/qpe/qlibrary.h \ | 169 | $(OPIEDIR)/include/qpe/qlibrary.h \ |
170 | $(QPEDIR)/include/qpe/qcom.h \ | 170 | $(OPIEDIR)/include/qpe/qcom.h \ |
171 | $(QPEDIR)/include/qpe/quuid.h \ | 171 | $(OPIEDIR)/include/qpe/quuid.h \ |
172 | $(QPEDIR)/include/qpe/config.h \ | 172 | $(OPIEDIR)/include/qpe/config.h \ |
173 | mediaplayerplugininterface.h \ | 173 | mediaplayerplugininterface.h \ |
174 | mediaplayerstate.h \ | 174 | mediaplayerstate.h \ |
175 | libmad/libmadpluginimpl.h \ | 175 | libmad/libmadpluginimpl.h \ |
176 | libmpeg3/libmpeg3pluginimpl.h \ | 176 | libmpeg3/libmpeg3pluginimpl.h \ |
177 | wavplugin/wavpluginimpl.h | 177 | wavplugin/wavpluginimpl.h |
178 | 178 | ||
179 | videowidget.o: videowidget.cpp \ | 179 | videowidget.o: videowidget.cpp \ |
180 | $(QPEDIR)/include/qpe/resource.h \ | 180 | $(OPIEDIR)/include/qpe/resource.h \ |
181 | videowidget.h \ | 181 | videowidget.h \ |
182 | mediaplayerplugininterface.h \ | 182 | mediaplayerplugininterface.h \ |
183 | $(QPEDIR)/include/qpe/qcom.h \ | 183 | $(OPIEDIR)/include/qpe/qcom.h \ |
184 | $(QPEDIR)/include/qpe/quuid.h \ | 184 | $(OPIEDIR)/include/qpe/quuid.h \ |
185 | mediaplayerstate.h | 185 | mediaplayerstate.h |
186 | 186 | ||
187 | audiowidget.o: audiowidget.cpp \ | 187 | audiowidget.o: audiowidget.cpp \ |
188 | $(QPEDIR)/include/qpe/resource.h \ | 188 | $(OPIEDIR)/include/qpe/resource.h \ |
189 | audiowidget.h \ | 189 | audiowidget.h \ |
190 | mediaplayerstate.h | 190 | mediaplayerstate.h |
191 | 191 | ||
192 | playlistwidget.o: playlistwidget.cpp \ | 192 | playlistwidget.o: playlistwidget.cpp \ |
193 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 193 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
194 | $(QPEDIR)/include/qpe/qpetoolbar.h \ | 194 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ |
195 | $(QPEDIR)/include/qpe/fileselector.h \ | 195 | $(OPIEDIR)/include/qpe/fileselector.h \ |
196 | $(QPEDIR)/include/qpe/applnk.h \ | 196 | $(OPIEDIR)/include/qpe/applnk.h \ |
197 | $(QPEDIR)/include/qpe/config.h \ | 197 | $(OPIEDIR)/include/qpe/config.h \ |
198 | $(QPEDIR)/include/qpe/global.h \ | 198 | $(OPIEDIR)/include/qpe/global.h \ |
199 | $(QPEDIR)/include/qpe/resource.h \ | 199 | $(OPIEDIR)/include/qpe/resource.h \ |
200 | playlistselection.h \ | 200 | playlistselection.h \ |
201 | playlistwidget.h \ | 201 | playlistwidget.h \ |
202 | mediaplayerstate.h | 202 | mediaplayerstate.h |
203 | 203 | ||
204 | mediaplayer.o: mediaplayer.cpp \ | 204 | mediaplayer.o: mediaplayer.cpp \ |
205 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 205 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
206 | $(QPEDIR)/include/qpe/qlibrary.h \ | 206 | $(OPIEDIR)/include/qpe/qlibrary.h \ |
207 | $(QPEDIR)/include/qpe/qcom.h \ | 207 | $(OPIEDIR)/include/qpe/qcom.h \ |
208 | $(QPEDIR)/include/qpe/quuid.h \ | 208 | $(OPIEDIR)/include/qpe/quuid.h \ |
209 | $(QPEDIR)/include/qpe/resource.h \ | 209 | $(OPIEDIR)/include/qpe/resource.h \ |
210 | $(QPEDIR)/include/qpe/config.h \ | 210 | $(OPIEDIR)/include/qpe/config.h \ |
211 | mediaplayer.h \ | 211 | mediaplayer.h \ |
212 | mediaplayerplugininterface.h \ | 212 | mediaplayerplugininterface.h \ |
213 | playlistwidget.h \ | 213 | playlistwidget.h \ |
214 | $(QPEDIR)/include/qpe/applnk.h \ | 214 | $(OPIEDIR)/include/qpe/applnk.h \ |
215 | audiowidget.h \ | 215 | audiowidget.h \ |
216 | loopcontrol.h \ | 216 | loopcontrol.h \ |
217 | audiodevice.h \ | 217 | audiodevice.h \ |
218 | mediaplayerstate.h | 218 | mediaplayerstate.h |
219 | 219 | ||
220 | audiodevice.o: audiodevice.cpp \ | 220 | audiodevice.o: audiodevice.cpp \ |
221 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 221 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
222 | $(QPEDIR)/include/qpe/config.h \ | 222 | $(OPIEDIR)/include/qpe/config.h \ |
223 | audiodevice.h \ | 223 | audiodevice.h \ |
224 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h | 224 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h |
225 | 225 | ||
226 | moc_loopcontrol.o: moc_loopcontrol.cpp \ | 226 | moc_loopcontrol.o: moc_loopcontrol.cpp \ |
227 | loopcontrol.h | 227 | loopcontrol.h |
228 | 228 | ||
229 | moc_playlistselection.o: moc_playlistselection.cpp \ | 229 | moc_playlistselection.o: moc_playlistselection.cpp \ |
230 | playlistselection.h \ | 230 | playlistselection.h \ |
231 | $(QPEDIR)/include/qpe/applnk.h | 231 | $(OPIEDIR)/include/qpe/applnk.h |
232 | 232 | ||
233 | moc_mediaplayerstate.o: moc_mediaplayerstate.cpp \ | 233 | moc_mediaplayerstate.o: moc_mediaplayerstate.cpp \ |
234 | mediaplayerstate.h | 234 | mediaplayerstate.h |
235 | 235 | ||
236 | moc_videowidget.o: moc_videowidget.cpp \ | 236 | moc_videowidget.o: moc_videowidget.cpp \ |
237 | videowidget.h | 237 | videowidget.h |
238 | 238 | ||
239 | moc_audiowidget.o: moc_audiowidget.cpp \ | 239 | moc_audiowidget.o: moc_audiowidget.cpp \ |
240 | audiowidget.h | 240 | audiowidget.h |
241 | 241 | ||
242 | moc_playlistwidget.o: moc_playlistwidget.cpp \ | 242 | moc_playlistwidget.o: moc_playlistwidget.cpp \ |
243 | playlistwidget.h \ | 243 | playlistwidget.h \ |
244 | $(QPEDIR)/include/qpe/applnk.h | 244 | $(OPIEDIR)/include/qpe/applnk.h |
245 | 245 | ||
246 | moc_mediaplayer.o: moc_mediaplayer.cpp \ | 246 | moc_mediaplayer.o: moc_mediaplayer.cpp \ |
247 | mediaplayer.h \ | 247 | mediaplayer.h \ |
248 | $(QPEDIR)/include/qpe/qlibrary.h \ | 248 | $(OPIEDIR)/include/qpe/qlibrary.h \ |
249 | $(QPEDIR)/include/qpe/qcom.h \ | 249 | $(OPIEDIR)/include/qpe/qcom.h \ |
250 | $(QPEDIR)/include/qpe/quuid.h \ | 250 | $(OPIEDIR)/include/qpe/quuid.h \ |
251 | mediaplayerplugininterface.h | 251 | mediaplayerplugininterface.h |
252 | 252 | ||
253 | moc_audiodevice.o: moc_audiodevice.cpp \ | 253 | moc_audiodevice.o: moc_audiodevice.cpp \ |
254 | audiodevice.h | 254 | audiodevice.h |
255 | 255 | ||
256 | moc_loopcontrol.cpp: loopcontrol.h | 256 | moc_loopcontrol.cpp: loopcontrol.h |
257 | $(MOC) loopcontrol.h -o moc_loopcontrol.cpp | 257 | $(MOC) loopcontrol.h -o moc_loopcontrol.cpp |
258 | 258 | ||
259 | moc_playlistselection.cpp: playlistselection.h | 259 | moc_playlistselection.cpp: playlistselection.h |
260 | $(MOC) playlistselection.h -o moc_playlistselection.cpp | 260 | $(MOC) playlistselection.h -o moc_playlistselection.cpp |
261 | 261 | ||
262 | moc_mediaplayerstate.cpp: mediaplayerstate.h | 262 | moc_mediaplayerstate.cpp: mediaplayerstate.h |
diff --git a/core/multimedia/opieplayer/libflash/libflash.pro b/core/multimedia/opieplayer/libflash/libflash.pro index d144f0b..bf97fbf 100644 --- a/core/multimedia/opieplayer/libflash/libflash.pro +++ b/core/multimedia/opieplayer/libflash/libflash.pro | |||
@@ -1,15 +1,15 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = libflashplugin.h libflashpluginimpl.h | 3 | HEADERS = libflashplugin.h libflashpluginimpl.h |
4 | SOURCES = libflashplugin.cpp libflashpluginimpl.cpp \ | 4 | SOURCES = libflashplugin.cpp libflashpluginimpl.cpp \ |
5 | adpcm.cc character.cc flash.cc graphic16.cc matrix.cc script.cc \ | 5 | adpcm.cc character.cc flash.cc graphic16.cc matrix.cc script.cc \ |
6 | sprite.cc bitmap.cc cxform.cc font.cc graphic24.cc movie.cc \ | 6 | sprite.cc bitmap.cc cxform.cc font.cc graphic24.cc movie.cc \ |
7 | shape.cc sqrt.cc button.cc displaylist.cc graphic.cc graphic32.cc \ | 7 | shape.cc sqrt.cc button.cc displaylist.cc graphic.cc graphic32.cc \ |
8 | program.cc sound.cc text.cc | 8 | program.cc sound.cc text.cc |
9 | TARGET = flashplugin | 9 | TARGET = flashplugin |
10 | DESTDIR = ../../plugins/codecs | 10 | DESTDIR = ../../plugins/codecs |
11 | INCLUDEPATH += $(QPEDIR)/include .. | 11 | INCLUDEPATH += $(OPIEDIR)/include .. |
12 | DEPENDPATH += ../$(QPEDIR)/include .. | 12 | DEPENDPATH += ../$(OPIEDIR)/include .. |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | VERSION = 1.0.0 | 14 | VERSION = 1.0.0 |
15 | 15 | ||
diff --git a/core/multimedia/opieplayer/libmad/Makefile.in b/core/multimedia/opieplayer/libmad/Makefile.in index 9e17769..19ded26 100644 --- a/core/multimedia/opieplayer/libmad/Makefile.in +++ b/core/multimedia/opieplayer/libmad/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) -DQCONFIG=\"qpe\" | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) -DQCONFIG=\"qpe\" | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include -I.. | 9 | INCPATH =-I$(OPIEDIR)/include -I.. |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe -lm $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe -lm $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/codecs/ | 17 | DESTDIR = ../../plugins/codecs/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= madplugin | 21 | TARGET= madplugin |
diff --git a/core/multimedia/opieplayer/libmad/libmad.pro b/core/multimedia/opieplayer/libmad/libmad.pro index e3f75b7..6c40a15 100644 --- a/core/multimedia/opieplayer/libmad/libmad.pro +++ b/core/multimedia/opieplayer/libmad/libmad.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = libmad_version.h fixed.h bit.h timer.h stream.h frame.h synth.h decoder.h \ | 3 | HEADERS = libmad_version.h fixed.h bit.h timer.h stream.h frame.h synth.h decoder.h \ |
4 | layer12.h layer3.h huffman.h libmad_global.h mad.h libmadplugin.h libmadpluginimpl.h | 4 | layer12.h layer3.h huffman.h libmad_global.h mad.h libmadplugin.h libmadpluginimpl.h |
5 | SOURCES = version.c fixed.c bit.c timer.c stream.c frame.c synth.c decoder.c \ | 5 | SOURCES = version.c fixed.c bit.c timer.c stream.c frame.c synth.c decoder.c \ |
6 | layer12.c layer3.c huffman.c libmadplugin.cpp libmadpluginimpl.cpp | 6 | layer12.c layer3.c huffman.c libmadplugin.cpp libmadpluginimpl.cpp |
7 | TARGET = madplugin | 7 | TARGET = madplugin |
8 | DESTDIR = ../../plugins/codecs | 8 | DESTDIR = ../../plugins/codecs |
9 | INCLUDEPATH += $(QPEDIR)/include .. | 9 | INCLUDEPATH += $(OPIEDIR)/include .. |
10 | DEPENDPATH += ../$(QPEDIR)/include .. | 10 | DEPENDPATH += ../$(OPIEDIR)/include .. |
11 | LIBS += -lqpe -lm | 11 | LIBS += -lqpe -lm |
12 | VERSION = 1.0.0 | 12 | VERSION = 1.0.0 |
diff --git a/core/multimedia/opieplayer/libmpeg3/Makefile.in b/core/multimedia/opieplayer/libmpeg3/Makefile.in index 1817902..9881815 100644 --- a/core/multimedia/opieplayer/libmpeg3/Makefile.in +++ b/core/multimedia/opieplayer/libmpeg3/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) -DQCONFIG=\"qpe\" | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) -DQCONFIG=\"qpe\" | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include -I.. | 9 | INCPATH =-I$(OPIEDIR)/include -I.. |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe -lpthread -lm $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe -lpthread -lm $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/codecs/ | 17 | DESTDIR = ../../plugins/codecs/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= mpeg3plugin | 21 | TARGET= mpeg3plugin |
diff --git a/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro b/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro index e2c35d3..b1426d1 100644 --- a/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro +++ b/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro | |||
@@ -27,16 +27,16 @@ SOURCES = libmpeg3plugin.cpp libmpeg3pluginimpl.cpp \ | |||
27 | video/idct.c \ | 27 | video/idct.c \ |
28 | video/macroblocks.c \ | 28 | video/macroblocks.c \ |
29 | video/mmxtest.c \ | 29 | video/mmxtest.c \ |
30 | video/motion.c \ | 30 | video/motion.c \ |
31 | video/mpeg3video.c \ | 31 | video/mpeg3video.c \ |
32 | video/output.c \ | 32 | video/output.c \ |
33 | video/reconstruct.c \ | 33 | video/reconstruct.c \ |
34 | video/seek.c \ | 34 | video/seek.c \ |
35 | video/slice.c \ | 35 | video/slice.c \ |
36 | video/vlc.c | 36 | video/vlc.c |
37 | TARGET = mpeg3plugin | 37 | TARGET = mpeg3plugin |
38 | DESTDIR = ../../plugins/codecs | 38 | DESTDIR = ../../plugins/codecs |
39 | INCLUDEPATH += $(QPEDIR)/include .. | 39 | INCLUDEPATH += $(OPIEDIR)/include .. |
40 | DEPENDPATH += ../$(QPEDIR)/include .. | 40 | DEPENDPATH += ../$(OPIEDIR)/include .. |
41 | LIBS += -lqpe -lpthread -lm | 41 | LIBS += -lqpe -lpthread -lm |
42 | VERSION = 1.0.0 | 42 | VERSION = 1.0.0 |
diff --git a/core/multimedia/opieplayer/mpegplayer.pro b/core/multimedia/opieplayer/mpegplayer.pro index d6952f8..3b8d4b0 100644 --- a/core/multimedia/opieplayer/mpegplayer.pro +++ b/core/multimedia/opieplayer/mpegplayer.pro | |||
@@ -1,21 +1,21 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = loopcontrol.h mediaplayerplugininterface.h playlistselection.h mediaplayerstate.h \ | 4 | HEADERS = loopcontrol.h mediaplayerplugininterface.h playlistselection.h mediaplayerstate.h \ |
5 | videowidget.h audiowidget.h playlistwidget.h mediaplayer.h audiodevice.h | 5 | videowidget.h audiowidget.h playlistwidget.h mediaplayer.h audiodevice.h |
6 | SOURCES = main.cpp \ | 6 | SOURCES = main.cpp \ |
7 | loopcontrol.cpp playlistselection.cpp mediaplayerstate.cpp \ | 7 | loopcontrol.cpp playlistselection.cpp mediaplayerstate.cpp \ |
8 | videowidget.cpp audiowidget.cpp playlistwidget.cpp mediaplayer.cpp audiodevice.cpp | 8 | videowidget.cpp audiowidget.cpp playlistwidget.cpp mediaplayer.cpp audiodevice.cpp |
9 | TARGET = mpegplayer | 9 | TARGET = mpegplayer |
10 | INCLUDEPATH+= $(QPEDIR)/include | 10 | INCLUDEPATH+= $(OPIEDIR)/include |
11 | DEPENDPATH+= $(QPEDIR)/include | 11 | DEPENDPATH+= $(OPIEDIR)/include |
12 | LIBS += -lqpe -lpthread | 12 | LIBS += -lqpe -lpthread |
13 | 13 | ||
14 | # INTERFACES= | 14 | # INTERFACES= |
15 | # INCLUDEPATH += $(QPEDIR)/include | 15 | # INCLUDEPATH += $(OPIEDIR)/include |
16 | # CONFIG+=static | 16 | # CONFIG+=static |
17 | # TMAKE_CXXFLAGS += -DQPIM_STANDALONE | 17 | # TMAKE_CXXFLAGS += -DQPIM_STANDALONE |
18 | # LIBS += libmpeg3/libmpeg3.a -lpthread | 18 | # LIBS += libmpeg3/libmpeg3.a -lpthread |
19 | # LIBS += $(QPEDIR)/plugins/codecs/liblibmadplugin.so | 19 | # LIBS += $(OPIEDIR)/plugins/codecs/liblibmadplugin.so |
20 | 20 | ||
21 | TRANSLATIONS = ../i18n/de/mpegplayer.ts | 21 | TRANSLATIONS = ../i18n/de/mpegplayer.ts |
diff --git a/core/multimedia/opieplayer/wavplugin/Makefile.in b/core/multimedia/opieplayer/wavplugin/Makefile.in index c9203f8..e9fec6c 100644 --- a/core/multimedia/opieplayer/wavplugin/Makefile.in +++ b/core/multimedia/opieplayer/wavplugin/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) -DQCONFIG=\"qpe\" | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) -DQCONFIG=\"qpe\" | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include -I.. | 9 | INCPATH =-I$(OPIEDIR)/include -I.. |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/codecs/ | 17 | DESTDIR = ../../plugins/codecs/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= wavplugin | 21 | TARGET= wavplugin |
diff --git a/core/multimedia/opieplayer/wavplugin/wavplugin.pro b/core/multimedia/opieplayer/wavplugin/wavplugin.pro index 4663813..2160431 100644 --- a/core/multimedia/opieplayer/wavplugin/wavplugin.pro +++ b/core/multimedia/opieplayer/wavplugin/wavplugin.pro | |||
@@ -1,10 +1,10 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = wavplugin.h wavpluginimpl.h | 3 | HEADERS = wavplugin.h wavpluginimpl.h |
4 | SOURCES = wavplugin.cpp wavpluginimpl.cpp | 4 | SOURCES = wavplugin.cpp wavpluginimpl.cpp |
5 | TARGET = wavplugin | 5 | TARGET = wavplugin |
6 | DESTDIR = ../../plugins/codecs | 6 | DESTDIR = ../../plugins/codecs |
7 | INCLUDEPATH += $(QPEDIR)/include .. | 7 | INCLUDEPATH += $(OPIEDIR)/include .. |
8 | DEPENDPATH += ../$(QPEDIR)/include .. | 8 | DEPENDPATH += ../$(OPIEDIR)/include .. |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
diff --git a/core/pim/addressbook/Makefile.in b/core/pim/addressbook/Makefile.in index 93c73c3..c46d0e5 100644 --- a/core/pim/addressbook/Makefile.in +++ b/core/pim/addressbook/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= addressbook | 21 | TARGET= addressbook |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =addressbook.h \ | 26 | HEADERS =addressbook.h \ |
27 | abeditor.h \ | 27 | abeditor.h \ |
28 | ablabel.h \ | 28 | ablabel.h \ |
29 | abtable.h \ | 29 | abtable.h \ |
@@ -79,25 +79,25 @@ OBJMOC = moc_addressbook.o \ | |||
79 | 79 | ||
80 | ####### Build rules | 80 | ####### Build rules |
81 | 81 | ||
82 | 82 | ||
83 | all: $(DESTDIR)$(TARGET) | 83 | all: $(DESTDIR)$(TARGET) |
84 | 84 | ||
85 | $(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) | 85 | $(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) |
86 | $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) | 86 | $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) |
87 | 87 | ||
88 | moc: $(SRCMOC) | 88 | moc: $(SRCMOC) |
89 | 89 | ||
90 | tmake: | 90 | tmake: |
91 | tmake p4addressbook.pro | 91 | tmake addressbook.pro |
92 | 92 | ||
93 | clean: | 93 | clean: |
94 | -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) | 94 | -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) |
95 | -rm -f *~ core | 95 | -rm -f *~ core |
96 | -rm -f allmoc.cpp | 96 | -rm -f allmoc.cpp |
97 | 97 | ||
98 | ####### Extension Modules | 98 | ####### Extension Modules |
99 | 99 | ||
100 | listpromodules: | 100 | listpromodules: |
101 | @echo | 101 | @echo |
102 | 102 | ||
103 | listallmodules: | 103 | listallmodules: |
@@ -114,116 +114,116 @@ REQUIRES= | |||
114 | 114 | ||
115 | ####### Sub-libraries | 115 | ####### Sub-libraries |
116 | 116 | ||
117 | 117 | ||
118 | ###### Combined headers | 118 | ###### Combined headers |
119 | 119 | ||
120 | 120 | ||
121 | 121 | ||
122 | ####### Compile | 122 | ####### Compile |
123 | 123 | ||
124 | main.o: main.cpp \ | 124 | main.o: main.cpp \ |
125 | addressbook.h \ | 125 | addressbook.h \ |
126 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 126 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
127 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h | 127 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h |
128 | 128 | ||
129 | addressbook.o: addressbook.cpp \ | 129 | addressbook.o: addressbook.cpp \ |
130 | abeditor.h \ | 130 | abeditor.h \ |
131 | $(QPEDIR)/include/qpe/contact.h \ | 131 | $(OPIEDIR)/include/qpe/contact.h \ |
132 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 132 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
133 | $(QPEDIR)/include/qpe/recordfields.h \ | 133 | $(OPIEDIR)/include/qpe/recordfields.h \ |
134 | ablabel.h \ | 134 | ablabel.h \ |
135 | abtable.h \ | 135 | abtable.h \ |
136 | $(QPEDIR)/include/qpe/categories.h \ | 136 | $(OPIEDIR)/include/qpe/categories.h \ |
137 | addresssettings.h \ | 137 | addresssettings.h \ |
138 | addresssettingsbase.h \ | 138 | addresssettingsbase.h \ |
139 | addressbook.h \ | 139 | addressbook.h \ |
140 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 140 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
141 | $(QPEDIR)/include/qpe/config.h \ | 141 | $(OPIEDIR)/include/qpe/config.h \ |
142 | $(QPEDIR)/include/qpe/finddialog.h \ | 142 | $(OPIEDIR)/include/qpe/finddialog.h \ |
143 | $(QPEDIR)/include/qpe/global.h \ | 143 | $(OPIEDIR)/include/qpe/global.h \ |
144 | $(QPEDIR)/include/qpe/resource.h \ | 144 | $(OPIEDIR)/include/qpe/resource.h \ |
145 | $(QPEDIR)/include/qpe/ir.h \ | 145 | $(OPIEDIR)/include/qpe/ir.h \ |
146 | $(QPEDIR)/include/qpe/qpemessagebox.h \ | 146 | $(OPIEDIR)/include/qpe/qpemessagebox.h \ |
147 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 147 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
148 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 148 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
149 | $(QPEDIR)/include/qpe/qpetoolbar.h | 149 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
150 | 150 | ||
151 | abeditor.o: abeditor.cpp \ | 151 | abeditor.o: abeditor.cpp \ |
152 | abeditor.h \ | 152 | abeditor.h \ |
153 | $(QPEDIR)/include/qpe/contact.h \ | 153 | $(OPIEDIR)/include/qpe/contact.h \ |
154 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 154 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
155 | $(QPEDIR)/include/qpe/recordfields.h \ | 155 | $(OPIEDIR)/include/qpe/recordfields.h \ |
156 | addresspicker.h \ | 156 | addresspicker.h \ |
157 | $(QPEDIR)/include/qpe/categoryselect.h \ | 157 | $(OPIEDIR)/include/qpe/categoryselect.h \ |
158 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 158 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
159 | $(QPEDIR)/include/qpe/qpedialog.h | 159 | $(OPIEDIR)/include/qpe/qpedialog.h |
160 | 160 | ||
161 | ablabel.o: ablabel.cpp \ | 161 | ablabel.o: ablabel.cpp \ |
162 | ablabel.h \ | 162 | ablabel.h \ |
163 | $(QPEDIR)/include/qpe/contact.h \ | 163 | $(OPIEDIR)/include/qpe/contact.h \ |
164 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 164 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
165 | $(QPEDIR)/include/qpe/recordfields.h \ | 165 | $(OPIEDIR)/include/qpe/recordfields.h \ |
166 | $(QPEDIR)/include/qpe/stringutil.h | 166 | $(OPIEDIR)/include/qpe/stringutil.h |
167 | 167 | ||
168 | abtable.o: abtable.cpp \ | 168 | abtable.o: abtable.cpp \ |
169 | $(QPEDIR)/include/qpe/categoryselect.h \ | 169 | $(OPIEDIR)/include/qpe/categoryselect.h \ |
170 | $(QPEDIR)/include/qpe/config.h \ | 170 | $(OPIEDIR)/include/qpe/config.h \ |
171 | $(QPEDIR)/include/qpe/stringutil.h \ | 171 | $(OPIEDIR)/include/qpe/stringutil.h \ |
172 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 172 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
173 | abtable.h \ | 173 | abtable.h \ |
174 | $(QPEDIR)/include/qpe/categories.h \ | 174 | $(OPIEDIR)/include/qpe/categories.h \ |
175 | $(QPEDIR)/include/qpe/contact.h \ | 175 | $(OPIEDIR)/include/qpe/contact.h \ |
176 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 176 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
177 | $(QPEDIR)/include/qpe/recordfields.h | 177 | $(OPIEDIR)/include/qpe/recordfields.h |
178 | 178 | ||
179 | addresssettings.o: addresssettings.cpp \ | 179 | addresssettings.o: addresssettings.cpp \ |
180 | addresssettings.h \ | 180 | addresssettings.h \ |
181 | addresssettingsbase.h \ | 181 | addresssettingsbase.h \ |
182 | $(QPEDIR)/include/qpe/config.h \ | 182 | $(OPIEDIR)/include/qpe/config.h \ |
183 | $(QPEDIR)/include/qpe/contact.h \ | 183 | $(OPIEDIR)/include/qpe/contact.h \ |
184 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 184 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
185 | $(QPEDIR)/include/qpe/recordfields.h | 185 | $(OPIEDIR)/include/qpe/recordfields.h |
186 | 186 | ||
187 | addresssettingsbase.h: addresssettingsbase.ui | 187 | addresssettingsbase.h: addresssettingsbase.ui |
188 | $(UIC) addresssettingsbase.ui -o $(INTERFACE_DECL_PATH)/addresssettingsbase.h | 188 | $(UIC) addresssettingsbase.ui -o $(INTERFACE_DECL_PATH)/addresssettingsbase.h |
189 | 189 | ||
190 | addresssettingsbase.cpp: addresssettingsbase.ui | 190 | addresssettingsbase.cpp: addresssettingsbase.ui |
191 | $(UIC) addresssettingsbase.ui -i addresssettingsbase.h -o addresssettingsbase.cpp | 191 | $(UIC) addresssettingsbase.ui -i addresssettingsbase.h -o addresssettingsbase.cpp |
192 | 192 | ||
193 | addresssettingsbase.o: addresssettingsbase.cpp \ | 193 | addresssettingsbase.o: addresssettingsbase.cpp \ |
194 | addresssettingsbase.h \ | 194 | addresssettingsbase.h \ |
195 | addresssettingsbase.ui | 195 | addresssettingsbase.ui |
196 | 196 | ||
197 | moc_addressbook.o: moc_addressbook.cpp \ | 197 | moc_addressbook.o: moc_addressbook.cpp \ |
198 | addressbook.h | 198 | addressbook.h |
199 | 199 | ||
200 | moc_abeditor.o: moc_abeditor.cpp \ | 200 | moc_abeditor.o: moc_abeditor.cpp \ |
201 | abeditor.h \ | 201 | abeditor.h \ |
202 | $(QPEDIR)/include/qpe/contact.h \ | 202 | $(OPIEDIR)/include/qpe/contact.h \ |
203 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 203 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
204 | $(QPEDIR)/include/qpe/recordfields.h | 204 | $(OPIEDIR)/include/qpe/recordfields.h |
205 | 205 | ||
206 | moc_ablabel.o: moc_ablabel.cpp \ | 206 | moc_ablabel.o: moc_ablabel.cpp \ |
207 | ablabel.h \ | 207 | ablabel.h \ |
208 | $(QPEDIR)/include/qpe/contact.h \ | 208 | $(OPIEDIR)/include/qpe/contact.h \ |
209 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 209 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
210 | $(QPEDIR)/include/qpe/recordfields.h | 210 | $(OPIEDIR)/include/qpe/recordfields.h |
211 | 211 | ||
212 | moc_abtable.o: moc_abtable.cpp \ | 212 | moc_abtable.o: moc_abtable.cpp \ |
213 | abtable.h \ | 213 | abtable.h \ |
214 | $(QPEDIR)/include/qpe/categories.h \ | 214 | $(OPIEDIR)/include/qpe/categories.h \ |
215 | $(QPEDIR)/include/qpe/contact.h \ | 215 | $(OPIEDIR)/include/qpe/contact.h \ |
216 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 216 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
217 | $(QPEDIR)/include/qpe/recordfields.h | 217 | $(OPIEDIR)/include/qpe/recordfields.h |
218 | 218 | ||
219 | moc_addresssettings.o: moc_addresssettings.cpp \ | 219 | moc_addresssettings.o: moc_addresssettings.cpp \ |
220 | addresssettings.h \ | 220 | addresssettings.h \ |
221 | addresssettingsbase.h | 221 | addresssettingsbase.h |
222 | 222 | ||
223 | moc_addresssettingsbase.o: moc_addresssettingsbase.cpp \ | 223 | moc_addresssettingsbase.o: moc_addresssettingsbase.cpp \ |
224 | addresssettingsbase.h | 224 | addresssettingsbase.h |
225 | 225 | ||
226 | moc_addressbook.cpp: addressbook.h | 226 | moc_addressbook.cpp: addressbook.h |
227 | $(MOC) addressbook.h -o moc_addressbook.cpp | 227 | $(MOC) addressbook.h -o moc_addressbook.cpp |
228 | 228 | ||
229 | moc_abeditor.cpp: abeditor.h | 229 | moc_abeditor.cpp: abeditor.h |
diff --git a/core/pim/addressbook/addressbook.pro b/core/pim/addressbook/addressbook.pro index 8d3401d..32e21a2 100644 --- a/core/pim/addressbook/addressbook.pro +++ b/core/pim/addressbook/addressbook.pro | |||
@@ -1,22 +1,22 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS= addressbook.h \ | 4 | HEADERS= addressbook.h \ |
5 | abeditor.h \ | 5 | abeditor.h \ |
6 | ablabel.h \ | 6 | ablabel.h \ |
7 | abtable.h \ | 7 | abtable.h \ |
8 | addresssettings.h | 8 | addresssettings.h |
9 | SOURCES= main.cpp \ | 9 | SOURCES= main.cpp \ |
10 | addressbook.cpp \ | 10 | addressbook.cpp \ |
11 | abeditor.cpp \ | 11 | abeditor.cpp \ |
12 | ablabel.cpp \ | 12 | ablabel.cpp \ |
13 | abtable.cpp \ | 13 | abtable.cpp \ |
14 | addresssettings.cpp | 14 | addresssettings.cpp |
15 | INTERFACES= addresssettingsbase.ui | 15 | INTERFACES= addresssettingsbase.ui |
16 | 16 | ||
17 | TARGET = addressbook | 17 | TARGET = addressbook |
18 | INCLUDEPATH += $(QPEDIR)/include | 18 | INCLUDEPATH += $(OPIEDIR)/include |
19 | DEPENDPATH+= $(QPEDIR)/include | 19 | DEPENDPATH+= $(OPIEDIR)/include |
20 | LIBS += -lqpe | 20 | LIBS += -lqpe |
21 | 21 | ||
22 | TRANSLATIONS = ../i18n/de/addressbook.ts | 22 | TRANSLATIONS = ../i18n/de/addressbook.ts |
diff --git a/core/pim/datebook/Makefile.in b/core/pim/datebook/Makefile.in index bdc69dc..0c3282e 100644 --- a/core/pim/datebook/Makefile.in +++ b/core/pim/datebook/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= datebook | 21 | TARGET= datebook |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =datebookday.h \ | 26 | HEADERS =datebookday.h \ |
27 | datebook.h \ | 27 | datebook.h \ |
28 | dateentryimpl.h \ | 28 | dateentryimpl.h \ |
29 | datebookdayheaderimpl.h \ | 29 | datebookdayheaderimpl.h \ |
@@ -151,118 +151,131 @@ REQUIRES= | |||
151 | 151 | ||
152 | ####### Sub-libraries | 152 | ####### Sub-libraries |
153 | 153 | ||
154 | 154 | ||
155 | ###### Combined headers | 155 | ###### Combined headers |
156 | 156 | ||
157 | 157 | ||
158 | 158 | ||
159 | ####### Compile | 159 | ####### Compile |
160 | 160 | ||
161 | main.o: main.cpp \ | 161 | main.o: main.cpp \ |
162 | datebook.h \ | 162 | datebook.h \ |
163 | $(QPEDIR)/include/qpe/datebookdb.h \ | 163 | $(OPIEDIR)/include/qpe/datebookdb.h \ |
164 | $(QPEDIR)/include/qpe/event.h \ | 164 | $(OPIEDIR)/include/qpe/event.h \ |
165 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 165 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
166 | $(QPEDIR)/include/qpe/qpeapplication.h | 166 | $(OPIEDIR)/include/qpe/timeconversion.h \ |
167 | $(OPIEDIR)/include/qpe/qpcglobal.h \ | ||
168 | $(OPIEDIR)/include/qpe/qpeapplication.h | ||
167 | 169 | ||
168 | datebookday.o: datebookday.cpp \ | 170 | datebookday.o: datebookday.cpp \ |
169 | datebookday.h \ | 171 | datebookday.h \ |
170 | $(QPEDIR)/include/qpe/event.h \ | 172 | $(OPIEDIR)/include/qpe/event.h \ |
171 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 173 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
174 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
175 | $(OPIEDIR)/include/qpe/qpcglobal.h \ | ||
172 | datebookdayheaderimpl.h \ | 176 | datebookdayheaderimpl.h \ |
173 | datebookdayheader.h \ | 177 | datebookdayheader.h \ |
174 | $(QPEDIR)/include/qpe/datebookdb.h \ | 178 | $(OPIEDIR)/include/qpe/datebookdb.h \ |
175 | $(QPEDIR)/include/qpe/resource.h \ | 179 | $(OPIEDIR)/include/qpe/resource.h \ |
176 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 180 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
177 | $(QPEDIR)/include/qpe/timestring.h \ | 181 | $(OPIEDIR)/include/qpe/timestring.h \ |
178 | $(QPEDIR)/include/qpe/qpedebug.h | 182 | $(OPIEDIR)/include/qpe/qpedebug.h |
179 | 183 | ||
180 | datebook.o: datebook.cpp \ | 184 | datebook.o: datebook.cpp \ |
181 | datebook.h \ | 185 | datebook.h \ |
182 | $(QPEDIR)/include/qpe/datebookdb.h \ | 186 | $(OPIEDIR)/include/qpe/datebookdb.h \ |
183 | $(QPEDIR)/include/qpe/event.h \ | 187 | $(OPIEDIR)/include/qpe/event.h \ |
184 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 188 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
189 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
190 | $(OPIEDIR)/include/qpe/qpcglobal.h \ | ||
185 | datebookday.h \ | 191 | datebookday.h \ |
186 | datebooksettings.h \ | 192 | datebooksettings.h \ |
187 | datebooksettingsbase.h \ | 193 | datebooksettingsbase.h \ |
188 | datebookweek.h \ | 194 | datebookweek.h \ |
189 | dateentryimpl.h \ | 195 | dateentryimpl.h \ |
190 | dateentry.h \ | 196 | dateentry.h \ |
191 | $(QPEDIR)/include/qpe/datebookmonth.h \ | 197 | $(OPIEDIR)/include/qpe/datebookmonth.h \ |
192 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 198 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
193 | $(QPEDIR)/include/qpe/config.h \ | 199 | $(OPIEDIR)/include/qpe/config.h \ |
194 | $(QPEDIR)/include/qpe/qpedebug.h \ | 200 | $(OPIEDIR)/include/qpe/qpedebug.h \ |
195 | $(QPEDIR)/include/qpe/finddialog.h \ | 201 | $(OPIEDIR)/include/qpe/finddialog.h \ |
196 | $(QPEDIR)/include/qpe/ir.h \ | 202 | $(OPIEDIR)/include/qpe/ir.h \ |
197 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 203 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
198 | $(QPEDIR)/include/qpe/qpemessagebox.h \ | 204 | $(OPIEDIR)/include/qpe/qpemessagebox.h \ |
199 | $(QPEDIR)/include/qpe/resource.h \ | 205 | $(OPIEDIR)/include/qpe/resource.h \ |
200 | $(QPEDIR)/include/qpe/sound.h \ | 206 | $(OPIEDIR)/include/qpe/sound.h \ |
201 | $(QPEDIR)/include/qpe/timestring.h \ | 207 | $(OPIEDIR)/include/qpe/timestring.h \ |
202 | $(QPEDIR)/include/qpe/qpetoolbar.h \ | 208 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ |
203 | $(QPEDIR)/include/qpe/tzselect.h \ | 209 | $(OPIEDIR)/include/qpe/tzselect.h \ |
204 | $(QPEDIR)/include/qpe/xmlreader.h | 210 | $(OPIEDIR)/include/qpe/xmlreader.h |
205 | 211 | ||
206 | dateentryimpl.o: dateentryimpl.cpp \ | 212 | dateentryimpl.o: dateentryimpl.cpp \ |
207 | dateentryimpl.h \ | 213 | dateentryimpl.h \ |
208 | dateentry.h \ | 214 | dateentry.h \ |
209 | $(QPEDIR)/include/qpe/event.h \ | 215 | $(OPIEDIR)/include/qpe/event.h \ |
210 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 216 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
217 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
218 | $(OPIEDIR)/include/qpe/qpcglobal.h \ | ||
211 | repeatentry.h \ | 219 | repeatentry.h \ |
212 | repeatentrybase.h \ | 220 | repeatentrybase.h \ |
213 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 221 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
214 | $(QPEDIR)/include/qpe/categoryselect.h \ | 222 | $(OPIEDIR)/include/qpe/categoryselect.h \ |
215 | $(QPEDIR)/include/qpe/datebookmonth.h \ | 223 | $(OPIEDIR)/include/qpe/datebookmonth.h \ |
216 | $(QPEDIR)/include/qpe/global.h \ | 224 | $(OPIEDIR)/include/qpe/global.h \ |
217 | $(QPEDIR)/include/qpe/timeconversion.h \ | 225 | $(OPIEDIR)/include/qpe/timestring.h \ |
218 | $(QPEDIR)/include/qpe/timestring.h \ | 226 | $(OPIEDIR)/include/qpe/tzselect.h |
219 | $(QPEDIR)/include/qpe/tzselect.h | ||
220 | 227 | ||
221 | datebookdayheaderimpl.o: datebookdayheaderimpl.cpp \ | 228 | datebookdayheaderimpl.o: datebookdayheaderimpl.cpp \ |
222 | datebookdayheaderimpl.h \ | 229 | datebookdayheaderimpl.h \ |
223 | datebookdayheader.h \ | 230 | datebookdayheader.h \ |
224 | $(QPEDIR)/include/qpe/datebookmonth.h \ | 231 | $(OPIEDIR)/include/qpe/datebookmonth.h \ |
225 | $(QPEDIR)/include/qpe/event.h \ | 232 | $(OPIEDIR)/include/qpe/event.h \ |
226 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 233 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
227 | $(QPEDIR)/include/qpe/timestring.h | 234 | $(OPIEDIR)/include/qpe/timeconversion.h \ |
235 | $(OPIEDIR)/include/qpe/qpcglobal.h \ | ||
236 | $(OPIEDIR)/include/qpe/timestring.h | ||
228 | 237 | ||
229 | datebooksettings.o: datebooksettings.cpp \ | 238 | datebooksettings.o: datebooksettings.cpp \ |
230 | datebooksettings.h \ | 239 | datebooksettings.h \ |
231 | datebooksettingsbase.h \ | 240 | datebooksettingsbase.h \ |
232 | $(QPEDIR)/include/qpe/qpeapplication.h | 241 | $(OPIEDIR)/include/qpe/qpeapplication.h |
233 | 242 | ||
234 | datebookweek.o: datebookweek.cpp \ | 243 | datebookweek.o: datebookweek.cpp \ |
235 | datebookweek.h \ | 244 | datebookweek.h \ |
236 | $(QPEDIR)/include/qpe/event.h \ | 245 | $(OPIEDIR)/include/qpe/event.h \ |
237 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 246 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
247 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
248 | $(OPIEDIR)/include/qpe/qpcglobal.h \ | ||
238 | datebookweekheaderimpl.h \ | 249 | datebookweekheaderimpl.h \ |
239 | datebookweekheader.h \ | 250 | datebookweekheader.h \ |
240 | $(QPEDIR)/include/qpe/calendar.h \ | 251 | $(OPIEDIR)/include/qpe/calendar.h \ |
241 | $(QPEDIR)/include/qpe/datebookdb.h \ | 252 | $(OPIEDIR)/include/qpe/datebookdb.h \ |
242 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 253 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
243 | $(QPEDIR)/include/qpe/timestring.h | 254 | $(OPIEDIR)/include/qpe/timestring.h |
244 | 255 | ||
245 | datebookweekheaderimpl.o: datebookweekheaderimpl.cpp \ | 256 | datebookweekheaderimpl.o: datebookweekheaderimpl.cpp \ |
246 | datebookweekheaderimpl.h \ | 257 | datebookweekheaderimpl.h \ |
247 | datebookweekheader.h | 258 | datebookweekheader.h |
248 | 259 | ||
249 | repeatentry.o: repeatentry.cpp \ | 260 | repeatentry.o: repeatentry.cpp \ |
250 | repeatentry.h \ | 261 | repeatentry.h \ |
251 | repeatentrybase.h \ | 262 | repeatentrybase.h \ |
252 | $(QPEDIR)/include/qpe/event.h \ | 263 | $(OPIEDIR)/include/qpe/event.h \ |
253 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 264 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
254 | $(QPEDIR)/include/qpe/datebookmonth.h \ | 265 | $(OPIEDIR)/include/qpe/timeconversion.h \ |
255 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 266 | $(OPIEDIR)/include/qpe/qpcglobal.h \ |
256 | $(QPEDIR)/include/qpe/timestring.h | 267 | $(OPIEDIR)/include/qpe/datebookmonth.h \ |
268 | $(OPIEDIR)/include/qpe/qpeapplication.h \ | ||
269 | $(OPIEDIR)/include/qpe/timestring.h | ||
257 | 270 | ||
258 | dateentry.h: dateentry.ui | 271 | dateentry.h: dateentry.ui |
259 | $(UIC) dateentry.ui -o $(INTERFACE_DECL_PATH)/dateentry.h | 272 | $(UIC) dateentry.ui -o $(INTERFACE_DECL_PATH)/dateentry.h |
260 | 273 | ||
261 | dateentry.cpp: dateentry.ui | 274 | dateentry.cpp: dateentry.ui |
262 | $(UIC) dateentry.ui -i dateentry.h -o dateentry.cpp | 275 | $(UIC) dateentry.ui -i dateentry.h -o dateentry.cpp |
263 | 276 | ||
264 | datebookdayheader.h: datebookdayheader.ui | 277 | datebookdayheader.h: datebookdayheader.ui |
265 | $(UIC) datebookdayheader.ui -o $(INTERFACE_DECL_PATH)/datebookdayheader.h | 278 | $(UIC) datebookdayheader.ui -o $(INTERFACE_DECL_PATH)/datebookdayheader.h |
266 | 279 | ||
267 | datebookdayheader.cpp: datebookdayheader.ui | 280 | datebookdayheader.cpp: datebookdayheader.ui |
268 | $(UIC) datebookdayheader.ui -i datebookdayheader.h -o datebookdayheader.cpp | 281 | $(UIC) datebookdayheader.ui -i datebookdayheader.h -o datebookdayheader.cpp |
@@ -288,57 +301,67 @@ repeatentrybase.cpp: repeatentrybase.ui | |||
288 | dateentry.o: dateentry.cpp | 301 | dateentry.o: dateentry.cpp |
289 | 302 | ||
290 | datebookdayheader.o: datebookdayheader.cpp | 303 | datebookdayheader.o: datebookdayheader.cpp |
291 | 304 | ||
292 | datebooksettingsbase.o: datebooksettingsbase.cpp | 305 | datebooksettingsbase.o: datebooksettingsbase.cpp |
293 | 306 | ||
294 | datebookweekheader.o: datebookweekheader.cpp | 307 | datebookweekheader.o: datebookweekheader.cpp |
295 | 308 | ||
296 | repeatentrybase.o: repeatentrybase.cpp | 309 | repeatentrybase.o: repeatentrybase.cpp |
297 | 310 | ||
298 | moc_datebookday.o: moc_datebookday.cpp \ | 311 | moc_datebookday.o: moc_datebookday.cpp \ |
299 | datebookday.h \ | 312 | datebookday.h \ |
300 | $(QPEDIR)/include/qpe/event.h \ | 313 | $(OPIEDIR)/include/qpe/event.h \ |
301 | $(QPEDIR)/include/qpe/palmtoprecord.h | 314 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
315 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
316 | $(OPIEDIR)/include/qpe/qpcglobal.h | ||
302 | 317 | ||
303 | moc_datebook.o: moc_datebook.cpp \ | 318 | moc_datebook.o: moc_datebook.cpp \ |
304 | datebook.h \ | 319 | datebook.h \ |
305 | $(QPEDIR)/include/qpe/datebookdb.h \ | 320 | $(OPIEDIR)/include/qpe/datebookdb.h \ |
306 | $(QPEDIR)/include/qpe/event.h \ | 321 | $(OPIEDIR)/include/qpe/event.h \ |
307 | $(QPEDIR)/include/qpe/palmtoprecord.h | 322 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
323 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
324 | $(OPIEDIR)/include/qpe/qpcglobal.h | ||
308 | 325 | ||
309 | moc_dateentryimpl.o: moc_dateentryimpl.cpp \ | 326 | moc_dateentryimpl.o: moc_dateentryimpl.cpp \ |
310 | dateentryimpl.h \ | 327 | dateentryimpl.h \ |
311 | dateentry.h \ | 328 | dateentry.h \ |
312 | $(QPEDIR)/include/qpe/event.h \ | 329 | $(OPIEDIR)/include/qpe/event.h \ |
313 | $(QPEDIR)/include/qpe/palmtoprecord.h | 330 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
331 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
332 | $(OPIEDIR)/include/qpe/qpcglobal.h | ||
314 | 333 | ||
315 | moc_datebookdayheaderimpl.o: moc_datebookdayheaderimpl.cpp \ | 334 | moc_datebookdayheaderimpl.o: moc_datebookdayheaderimpl.cpp \ |
316 | datebookdayheaderimpl.h \ | 335 | datebookdayheaderimpl.h \ |
317 | datebookdayheader.h | 336 | datebookdayheader.h |
318 | 337 | ||
319 | moc_datebookweek.o: moc_datebookweek.cpp \ | 338 | moc_datebookweek.o: moc_datebookweek.cpp \ |
320 | datebookweek.h \ | 339 | datebookweek.h \ |
321 | $(QPEDIR)/include/qpe/event.h \ | 340 | $(OPIEDIR)/include/qpe/event.h \ |
322 | $(QPEDIR)/include/qpe/palmtoprecord.h | 341 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
342 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
343 | $(OPIEDIR)/include/qpe/qpcglobal.h | ||
323 | 344 | ||
324 | moc_datebookweekheaderimpl.o: moc_datebookweekheaderimpl.cpp \ | 345 | moc_datebookweekheaderimpl.o: moc_datebookweekheaderimpl.cpp \ |
325 | datebookweekheaderimpl.h \ | 346 | datebookweekheaderimpl.h \ |
326 | datebookweekheader.h | 347 | datebookweekheader.h |
327 | 348 | ||
328 | moc_repeatentry.o: moc_repeatentry.cpp \ | 349 | moc_repeatentry.o: moc_repeatentry.cpp \ |
329 | repeatentry.h \ | 350 | repeatentry.h \ |
330 | repeatentrybase.h \ | 351 | repeatentrybase.h \ |
331 | $(QPEDIR)/include/qpe/event.h \ | 352 | $(OPIEDIR)/include/qpe/event.h \ |
332 | $(QPEDIR)/include/qpe/palmtoprecord.h | 353 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
354 | $(OPIEDIR)/include/qpe/timeconversion.h \ | ||
355 | $(OPIEDIR)/include/qpe/qpcglobal.h | ||
333 | 356 | ||
334 | moc_dateentry.o: moc_dateentry.cpp \ | 357 | moc_dateentry.o: moc_dateentry.cpp \ |
335 | dateentry.h | 358 | dateentry.h |
336 | 359 | ||
337 | moc_datebookdayheader.o: moc_datebookdayheader.cpp \ | 360 | moc_datebookdayheader.o: moc_datebookdayheader.cpp \ |
338 | datebookdayheader.h | 361 | datebookdayheader.h |
339 | 362 | ||
340 | moc_datebooksettingsbase.o: moc_datebooksettingsbase.cpp \ | 363 | moc_datebooksettingsbase.o: moc_datebooksettingsbase.cpp \ |
341 | datebooksettingsbase.h | 364 | datebooksettingsbase.h |
342 | 365 | ||
343 | moc_datebookweekheader.o: moc_datebookweekheader.cpp \ | 366 | moc_datebookweekheader.o: moc_datebookweekheader.cpp \ |
344 | datebookweekheader.h | 367 | datebookweekheader.h |
diff --git a/core/pim/datebook/datebook.pro b/core/pim/datebook/datebook.pro index 17c02ec..fae5d2b 100644 --- a/core/pim/datebook/datebook.pro +++ b/core/pim/datebook/datebook.pro | |||
@@ -1,15 +1,15 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | 4 | ||
5 | HEADERS= datebookday.h \ | 5 | HEADERS= datebookday.h \ |
6 | datebook.h \ | 6 | datebook.h \ |
7 | dateentryimpl.h \ | 7 | dateentryimpl.h \ |
8 | datebookdayheaderimpl.h \ | 8 | datebookdayheaderimpl.h \ |
9 | datebooksettings.h \ | 9 | datebooksettings.h \ |
10 | datebookweek.h \ | 10 | datebookweek.h \ |
11 | datebookweekheaderimpl.h \ | 11 | datebookweekheaderimpl.h \ |
12 | repeatentry.h | 12 | repeatentry.h |
13 | 13 | ||
14 | SOURCES= main.cpp \ | 14 | SOURCES= main.cpp \ |
15 | datebookday.cpp \ | 15 | datebookday.cpp \ |
@@ -18,19 +18,19 @@ SOURCES = main.cpp \ | |||
18 | datebookdayheaderimpl.cpp \ | 18 | datebookdayheaderimpl.cpp \ |
19 | datebooksettings.cpp \ | 19 | datebooksettings.cpp \ |
20 | datebookweek.cpp \ | 20 | datebookweek.cpp \ |
21 | datebookweekheaderimpl.cpp \ | 21 | datebookweekheaderimpl.cpp \ |
22 | repeatentry.cpp | 22 | repeatentry.cpp |
23 | 23 | ||
24 | INTERFACES= dateentry.ui \ | 24 | INTERFACES= dateentry.ui \ |
25 | datebookdayheader.ui \ | 25 | datebookdayheader.ui \ |
26 | datebooksettingsbase.ui \ | 26 | datebooksettingsbase.ui \ |
27 | datebookweekheader.ui \ | 27 | datebookweekheader.ui \ |
28 | repeatentrybase.ui | 28 | repeatentrybase.ui |
29 | 29 | ||
30 | INCLUDEPATH += $(QPEDIR)/include | 30 | INCLUDEPATH += $(OPIEDIR)/include |
31 | DEPENDPATH+= $(QPEDIR)/include | 31 | DEPENDPATH+= $(OPIEDIR)/include |
32 | LIBS += -lqpe | 32 | LIBS += -lqpe |
33 | 33 | ||
34 | TARGET = datebook | 34 | TARGET = datebook |
35 | 35 | ||
36 | TRANSLATIONS = ../i18n/de/datebook.ts | 36 | TRANSLATIONS = ../i18n/de/datebook.ts |
diff --git a/core/pim/todo/Makefile.in b/core/pim/todo/Makefile.in index f3c5f0e..efe6a35 100644 --- a/core/pim/todo/Makefile.in +++ b/core/pim/todo/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= todolist | 21 | TARGET= todolist |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =mainwindow.h \ | 26 | HEADERS =mainwindow.h \ |
27 | todotable.h \ | 27 | todotable.h \ |
28 | todoentryimpl.h | 28 | todoentryimpl.h |
29 | SOURCES =main.cpp \ | 29 | SOURCES =main.cpp \ |
@@ -104,93 +104,95 @@ REQUIRES= | |||
104 | 104 | ||
105 | ####### Sub-libraries | 105 | ####### Sub-libraries |
106 | 106 | ||
107 | 107 | ||
108 | ###### Combined headers | 108 | ###### Combined headers |
109 | 109 | ||
110 | 110 | ||
111 | 111 | ||
112 | ####### Compile | 112 | ####### Compile |
113 | 113 | ||
114 | main.o: main.cpp \ | 114 | main.o: main.cpp \ |
115 | mainwindow.h \ | 115 | mainwindow.h \ |
116 | $(QPEDIR)/include/qpe/qpeapplication.h | 116 | $(OPIEDIR)/include/qpe/qpeapplication.h |
117 | 117 | ||
118 | mainwindow.o: mainwindow.cpp \ | 118 | mainwindow.o: mainwindow.cpp \ |
119 | mainwindow.h \ | 119 | mainwindow.h \ |
120 | todoentryimpl.h \ | 120 | todoentryimpl.h \ |
121 | todoentry.h \ | 121 | todoentry.h \ |
122 | $(QPEDIR)/include/qpe/task.h \ | 122 | $(OPIEDIR)/include/qpe/task.h \ |
123 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 123 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
124 | $(QPEDIR)/include/qpe/stringutil.h \ | 124 | $(OPIEDIR)/include/qpe/stringutil.h \ |
125 | todotable.h \ | 125 | todotable.h \ |
126 | $(QPEDIR)/include/qpe/categories.h \ | 126 | $(OPIEDIR)/include/qpe/categories.h \ |
127 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 127 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
128 | $(QPEDIR)/include/qpe/config.h \ | 128 | $(OPIEDIR)/include/qpe/config.h \ |
129 | $(QPEDIR)/include/qpe/finddialog.h \ | 129 | $(OPIEDIR)/include/qpe/finddialog.h \ |
130 | $(QPEDIR)/include/qpe/global.h \ | 130 | $(OPIEDIR)/include/qpe/global.h \ |
131 | $(QPEDIR)/include/qpe/ir.h \ | 131 | $(OPIEDIR)/include/qpe/ir.h \ |
132 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 132 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
133 | $(QPEDIR)/include/qpe/qpemessagebox.h \ | 133 | $(OPIEDIR)/include/qpe/qpemessagebox.h \ |
134 | $(QPEDIR)/include/qpe/resource.h \ | 134 | $(OPIEDIR)/include/qpe/resource.h \ |
135 | $(QPEDIR)/include/qpe/qpetoolbar.h | 135 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
136 | 136 | ||
137 | todotable.o: todotable.cpp \ | 137 | todotable.o: todotable.cpp \ |
138 | todotable.h \ | 138 | todotable.h \ |
139 | $(QPEDIR)/include/qpe/categories.h \ | 139 | $(OPIEDIR)/include/qpe/categories.h \ |
140 | $(QPEDIR)/include/qpe/task.h \ | 140 | $(OPIEDIR)/include/qpe/stringutil.h \ |
141 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 141 | $(OPIEDIR)/include/qpe/task.h \ |
142 | $(QPEDIR)/include/qpe/stringutil.h \ | 142 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
143 | $(QPEDIR)/include/qpe/categoryselect.h \ | 143 | $(OPIEDIR)/include/qpe/categoryselect.h \ |
144 | $(QPEDIR)/include/qpe/xmlreader.h | 144 | $(OPIEDIR)/include/qpe/xmlreader.h |
145 | 145 | ||
146 | todoentryimpl.o: todoentryimpl.cpp \ | 146 | todoentryimpl.o: todoentryimpl.cpp \ |
147 | todoentryimpl.h \ | 147 | todoentryimpl.h \ |
148 | todoentry.h \ | 148 | todoentry.h \ |
149 | $(QPEDIR)/include/qpe/task.h \ | 149 | $(OPIEDIR)/include/qpe/task.h \ |
150 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 150 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
151 | $(QPEDIR)/include/qpe/stringutil.h \ | 151 | $(OPIEDIR)/include/qpe/stringutil.h \ |
152 | $(QPEDIR)/include/qpe/categoryselect.h \ | 152 | $(OPIEDIR)/include/qpe/categoryselect.h \ |
153 | $(QPEDIR)/include/qpe/datebookmonth.h \ | 153 | $(OPIEDIR)/include/qpe/datebookmonth.h \ |
154 | $(QPEDIR)/include/qpe/event.h \ | 154 | $(OPIEDIR)/include/qpe/event.h \ |
155 | $(QPEDIR)/include/qpe/global.h \ | 155 | $(OPIEDIR)/include/qpe/timeconversion.h \ |
156 | $(QPEDIR)/include/qpe/imageedit.h \ | 156 | $(OPIEDIR)/include/qpe/qpcglobal.h \ |
157 | $(QPEDIR)/include/qpe/timestring.h | 157 | $(OPIEDIR)/include/qpe/global.h \ |
158 | $(OPIEDIR)/include/qpe/imageedit.h \ | ||
159 | $(OPIEDIR)/include/qpe/timestring.h | ||
158 | 160 | ||
159 | todoentry.h: todoentry.ui | 161 | todoentry.h: todoentry.ui |
160 | $(UIC) todoentry.ui -o $(INTERFACE_DECL_PATH)/todoentry.h | 162 | $(UIC) todoentry.ui -o $(INTERFACE_DECL_PATH)/todoentry.h |
161 | 163 | ||
162 | todoentry.cpp: todoentry.ui | 164 | todoentry.cpp: todoentry.ui |
163 | $(UIC) todoentry.ui -i todoentry.h -o todoentry.cpp | 165 | $(UIC) todoentry.ui -i todoentry.h -o todoentry.cpp |
164 | 166 | ||
165 | todoentry.o: todoentry.cpp \ | 167 | todoentry.o: todoentry.cpp \ |
166 | todoentry.h \ | 168 | todoentry.h \ |
167 | todoentry.ui | 169 | todoentry.ui |
168 | 170 | ||
169 | moc_mainwindow.o: moc_mainwindow.cpp \ | 171 | moc_mainwindow.o: moc_mainwindow.cpp \ |
170 | mainwindow.h | 172 | mainwindow.h |
171 | 173 | ||
172 | moc_todotable.o: moc_todotable.cpp \ | 174 | moc_todotable.o: moc_todotable.cpp \ |
173 | todotable.h \ | 175 | todotable.h \ |
174 | $(QPEDIR)/include/qpe/categories.h \ | 176 | $(OPIEDIR)/include/qpe/categories.h \ |
175 | $(QPEDIR)/include/qpe/task.h \ | 177 | $(OPIEDIR)/include/qpe/stringutil.h \ |
176 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 178 | $(OPIEDIR)/include/qpe/task.h \ |
177 | $(QPEDIR)/include/qpe/stringutil.h | 179 | $(OPIEDIR)/include/qpe/palmtoprecord.h |
178 | 180 | ||
179 | moc_todoentryimpl.o: moc_todoentryimpl.cpp \ | 181 | moc_todoentryimpl.o: moc_todoentryimpl.cpp \ |
180 | todoentryimpl.h \ | 182 | todoentryimpl.h \ |
181 | todoentry.h \ | 183 | todoentry.h \ |
182 | $(QPEDIR)/include/qpe/task.h \ | 184 | $(OPIEDIR)/include/qpe/task.h \ |
183 | $(QPEDIR)/include/qpe/palmtoprecord.h \ | 185 | $(OPIEDIR)/include/qpe/palmtoprecord.h \ |
184 | $(QPEDIR)/include/qpe/stringutil.h | 186 | $(OPIEDIR)/include/qpe/stringutil.h |
185 | 187 | ||
186 | moc_todoentry.o: moc_todoentry.cpp \ | 188 | moc_todoentry.o: moc_todoentry.cpp \ |
187 | todoentry.h | 189 | todoentry.h |
188 | 190 | ||
189 | moc_mainwindow.cpp: mainwindow.h | 191 | moc_mainwindow.cpp: mainwindow.h |
190 | $(MOC) mainwindow.h -o moc_mainwindow.cpp | 192 | $(MOC) mainwindow.h -o moc_mainwindow.cpp |
191 | 193 | ||
192 | moc_todotable.cpp: todotable.h | 194 | moc_todotable.cpp: todotable.h |
193 | $(MOC) todotable.h -o moc_todotable.cpp | 195 | $(MOC) todotable.h -o moc_todotable.cpp |
194 | 196 | ||
195 | moc_todoentryimpl.cpp: todoentryimpl.h | 197 | moc_todoentryimpl.cpp: todoentryimpl.h |
196 | $(MOC) todoentryimpl.h -o moc_todoentryimpl.cpp | 198 | $(MOC) todoentryimpl.h -o moc_todoentryimpl.cpp |
diff --git a/core/pim/todo/todo.pro b/core/pim/todo/todo.pro index e28ea1c..5eb02a2 100644 --- a/core/pim/todo/todo.pro +++ b/core/pim/todo/todo.pro | |||
@@ -1,19 +1,19 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS= mainwindow.h \ | 4 | HEADERS= mainwindow.h \ |
5 | todotable.h \ | 5 | todotable.h \ |
6 | todoentryimpl.h | 6 | todoentryimpl.h |
7 | SOURCES= main.cpp \ | 7 | SOURCES= main.cpp \ |
8 | mainwindow.cpp \ | 8 | mainwindow.cpp \ |
9 | todotable.cpp \ | 9 | todotable.cpp \ |
10 | todoentryimpl.cpp | 10 | todoentryimpl.cpp |
11 | 11 | ||
12 | INTERFACES= todoentry.ui | 12 | INTERFACES= todoentry.ui |
13 | 13 | ||
14 | TARGET = todolist | 14 | TARGET = todolist |
15 | INCLUDEPATH += $(QPEDIR)/include | 15 | INCLUDEPATH += $(OPIEDIR)/include |
16 | DEPENDPATH+= $(QPEDIR)/include | 16 | DEPENDPATH+= $(OPIEDIR)/include |
17 | LIBS += -lqpe | 17 | LIBS += -lqpe |
18 | 18 | ||
19 | TRANSLATIONS = ../i18n/de/todolist.ts | 19 | TRANSLATIONS = ../i18n/de/todolist.ts |
diff --git a/core/settings/citytime/Makefile.in b/core/settings/citytime/Makefile.in index b058021..4112a68 100644 --- a/core/settings/citytime/Makefile.in +++ b/core/settings/citytime/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= citytime | 21 | TARGET= citytime |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =citytime.h \ | 26 | HEADERS =citytime.h \ |
27 | zonemap.h \ | 27 | zonemap.h \ |
28 | sun.h \ | 28 | sun.h \ |
29 | stylusnormalizer.h | 29 | stylusnormalizer.h |
@@ -110,46 +110,46 @@ REQUIRES= | |||
110 | 110 | ||
111 | ###### Combined headers | 111 | ###### Combined headers |
112 | 112 | ||
113 | 113 | ||
114 | 114 | ||
115 | ####### Compile | 115 | ####### Compile |
116 | 116 | ||
117 | citytime.o: citytime.cpp \ | 117 | citytime.o: citytime.cpp \ |
118 | zonemap.h \ | 118 | zonemap.h \ |
119 | stylusnormalizer.h \ | 119 | stylusnormalizer.h \ |
120 | citytime.h \ | 120 | citytime.h \ |
121 | citytimebase.h \ | 121 | citytimebase.h \ |
122 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 122 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
123 | $(QPEDIR)/include/qpe/config.h \ | 123 | $(OPIEDIR)/include/qpe/config.h \ |
124 | $(QPEDIR)/include/qpe/timestring.h \ | 124 | $(OPIEDIR)/include/qpe/timestring.h \ |
125 | $(QPEDIR)/include/qpe/tzselect.h \ | 125 | $(OPIEDIR)/include/qpe/tzselect.h \ |
126 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h | 126 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h |
127 | 127 | ||
128 | zonemap.o: zonemap.cpp \ | 128 | zonemap.o: zonemap.cpp \ |
129 | sun.h \ | 129 | sun.h \ |
130 | zonemap.h \ | 130 | zonemap.h \ |
131 | stylusnormalizer.h \ | 131 | stylusnormalizer.h \ |
132 | $(QPEDIR)/include/qpe/resource.h \ | 132 | $(OPIEDIR)/include/qpe/resource.h \ |
133 | $(QPEDIR)/include/qpe/timestring.h \ | 133 | $(OPIEDIR)/include/qpe/timestring.h \ |
134 | $(QPEDIR)/include/qpe/qpeapplication.h | 134 | $(OPIEDIR)/include/qpe/qpeapplication.h |
135 | 135 | ||
136 | main.o: main.cpp \ | 136 | main.o: main.cpp \ |
137 | citytime.h \ | 137 | citytime.h \ |
138 | citytimebase.h \ | 138 | citytimebase.h \ |
139 | $(QPEDIR)/include/qpe/qpeapplication.h | 139 | $(OPIEDIR)/include/qpe/qpeapplication.h |
140 | 140 | ||
141 | sun.o: sun.c \ | 141 | sun.o: sun.c \ |
142 | sun.h \ | 142 | sun.h \ |
143 | $(QPEDIR)/include/qpe/qmath.h | 143 | $(OPIEDIR)/include/qpe/qmath.h |
144 | 144 | ||
145 | stylusnormalizer.o: stylusnormalizer.cpp \ | 145 | stylusnormalizer.o: stylusnormalizer.cpp \ |
146 | stylusnormalizer.h | 146 | stylusnormalizer.h |
147 | 147 | ||
148 | citytimebase.h: citytimebase.ui | 148 | citytimebase.h: citytimebase.ui |
149 | $(UIC) citytimebase.ui -o $(INTERFACE_DECL_PATH)/citytimebase.h | 149 | $(UIC) citytimebase.ui -o $(INTERFACE_DECL_PATH)/citytimebase.h |
150 | 150 | ||
151 | citytimebase.cpp: citytimebase.ui | 151 | citytimebase.cpp: citytimebase.ui |
152 | $(UIC) citytimebase.ui -i citytimebase.h -o citytimebase.cpp | 152 | $(UIC) citytimebase.ui -i citytimebase.h -o citytimebase.cpp |
153 | 153 | ||
154 | citytimebase.o: citytimebase.cpp \ | 154 | citytimebase.o: citytimebase.cpp \ |
155 | citytimebase.h \ | 155 | citytimebase.h \ |
diff --git a/core/settings/citytime/citytime.pro b/core/settings/citytime/citytime.pro index d988b48..3420499 100644 --- a/core/settings/citytime/citytime.pro +++ b/core/settings/citytime/citytime.pro | |||
@@ -1,13 +1,13 @@ | |||
1 | # $Id$ | 1 | # $Id$ |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | TEMPLATE = app | 3 | TEMPLATE = app |
4 | DESTDIR = $(QPEDIR)/bin | 4 | DESTDIR = $(OPIEDIR)/bin |
5 | INTERFACES = citytimebase.ui | 5 | INTERFACES = citytimebase.ui |
6 | HEADERS = citytime.h zonemap.h sun.h stylusnormalizer.h | 6 | HEADERS = citytime.h zonemap.h sun.h stylusnormalizer.h |
7 | SOURCES = citytime.cpp zonemap.cpp main.cpp sun.c stylusnormalizer.cpp | 7 | SOURCES = citytime.cpp zonemap.cpp main.cpp sun.c stylusnormalizer.cpp |
8 | TARGET = citytime | 8 | TARGET = citytime |
9 | INCLUDEPATH += $(QPEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH += $(QPEDIR)/include | 10 | DEPENDPATH += $(OPIEDIR)/include |
11 | LIBS += -lqpe | 11 | LIBS += -lqpe |
12 | 12 | ||
13 | TRANSLATIONS = ../i18n/de/citytime.ts | 13 | TRANSLATIONS = ../i18n/de/citytime.ts |
diff --git a/core/settings/light-and-power/Makefile.in b/core/settings/light-and-power/Makefile.in index 8236ed0..5caa249 100644 --- a/core/settings/light-and-power/Makefile.in +++ b/core/settings/light-and-power/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../bin/ | 17 | DESTDIR = ../../bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= light-and-power | 21 | TARGET= light-and-power |
diff --git a/core/settings/light-and-power/light-and-power.pro b/core/settings/light-and-power/light-and-power.pro index 87bb111..35b51a7 100644 --- a/core/settings/light-and-power/light-and-power.pro +++ b/core/settings/light-and-power/light-and-power.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = ../../bin | 3 | DESTDIR = ../../bin |
4 | HEADERS = settings.h | 4 | HEADERS = settings.h |
5 | SOURCES = light.cpp main.cpp | 5 | SOURCES = light.cpp main.cpp |
6 | INTERFACES= lightsettingsbase.ui | 6 | INTERFACES= lightsettingsbase.ui |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= ../$(QPEDIR)/include | 8 | DEPENDPATH+= ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = light-and-power | 10 | TARGET = light-and-power |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/de/light-and-power.ts | 12 | TRANSLATIONS = ../../i18n/de/light-and-power.ts |
diff --git a/core/settings/security/Makefile.in b/core/settings/security/Makefile.in index 803edc5..f190e79 100644 --- a/core/settings/security/Makefile.in +++ b/core/settings/security/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../bin/ | 17 | DESTDIR = ../../bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= security | 21 | TARGET= security |
diff --git a/core/settings/security/security.pro b/core/settings/security/security.pro index 282127e..f22e7a6 100644 --- a/core/settings/security/security.pro +++ b/core/settings/security/security.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = ../../bin | 3 | DESTDIR = ../../bin |
4 | HEADERS = security.h | 4 | HEADERS = security.h |
5 | SOURCES = security.cpp main.cpp | 5 | SOURCES = security.cpp main.cpp |
6 | INTERFACES= securitybase.ui | 6 | INTERFACES= securitybase.ui |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= ../$(QPEDIR)/include | 8 | DEPENDPATH+= ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = security | 10 | TARGET = security |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/de/security.ts | 12 | TRANSLATIONS = ../../i18n/de/security.ts |
diff --git a/docs/qcop.doc b/docs/qcop.doc index 6fe4c71..e62f91d 100644 --- a/docs/qcop.doc +++ b/docs/qcop.doc | |||
@@ -158,22 +158,22 @@ messages are sent to these channels vie QCopEnvelope, the message is | |||
158 | delivered even if the application is not yet running (the application | 158 | delivered even if the application is not yet running (the application |
159 | is run and the message is then sent). | 159 | is run and the message is then sent). |
160 | 160 | ||
161 | Applications also respond to messages specific to the application. | 161 | Applications also respond to messages specific to the application. |
162 | Such messages in the base Qtopia applications are: | 162 | Such messages in the base Qtopia applications are: |
163 | 163 | ||
164 | <dl> | 164 | <dl> |
165 | <dt><b>QPE/Application/helpbrowser</b> | 165 | <dt><b>QPE/Application/helpbrowser</b> |
166 | <ul> | 166 | <ul> |
167 | <li>showFile(QString <i>file</i>) | 167 | <li>showFile(QString <i>file</i>) |
168 | <br>Send this message to have the Help Browser show a file. | 168 | <br>Send this message to have the Help Browser show a file. |
169 | The <i>file</i> may be an absolute filename or relative | 169 | The <i>file</i> may be an absolute filename or relative |
170 | to the system HTML documentation directory ($QPEDIR/help/html). | 170 | to the system HTML documentation directory ($OPIEDIR/help/html). |
171 | </ul> | 171 | </ul> |
172 | <dt><b>QPE/Application/datebook</b> | 172 | <dt><b>QPE/Application/datebook</b> |
173 | <ul> | 173 | <ul> |
174 | <li>alarm(QDateTime,int) | 174 | <li>alarm(QDateTime,int) |
175 | <br>Internal. Causes the Calendar application to sound alarms. | 175 | <br>Internal. Causes the Calendar application to sound alarms. |
176 | </ul> | 176 | </ul> |
177 | </dl> | 177 | </dl> |
178 | 178 | ||
179 | */ | 179 | */ |
diff --git a/docs/start.doc b/docs/start.doc index 9745d9a..01b6ab1 100644 --- a/docs/start.doc +++ b/docs/start.doc | |||
@@ -49,58 +49,58 @@ run this example to learn how things work, before tackling your own | |||
49 | projects. | 49 | projects. |
50 | 50 | ||
51 | <p> | 51 | <p> |
52 | To compile the example program for running on the Linux desktop: | 52 | To compile the example program for running on the Linux desktop: |
53 | 53 | ||
54 | <ol> | 54 | <ol> |
55 | <li> | 55 | <li> |
56 | <p> | 56 | <p> |
57 | Check the environment is correct: | 57 | Check the environment is correct: |
58 | 58 | ||
59 | <p> | 59 | <p> |
60 | <pre> | 60 | <pre> |
61 | export QPEDIR=/opt/Qtopia | 61 | export OPIEDIR=/opt/Qtopia |
62 | export QTDIR=/opt/Qtopia | 62 | export QTDIR=/opt/Qtopia |
63 | export PATH=$QTDIR/bin:$PATH | 63 | export PATH=$QTDIR/bin:$PATH |
64 | export TMAKEPATH=/opt/Qtopia/tmake/lib/qws/linux-generic-g++ | 64 | export TMAKEPATH=/opt/Qtopia/tmake/lib/qws/linux-generic-g++ |
65 | export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH | 65 | export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH |
66 | </pre> | 66 | </pre> |
67 | 67 | ||
68 | <li> Take a copy of the example: | 68 | <li> Take a copy of the example: |
69 | 69 | ||
70 | <pre> | 70 | <pre> |
71 | cd somewhere | 71 | cd somewhere |
72 | cp -r $QPEDIR/example . | 72 | cp -r $OPIEDIR/example . |
73 | cd example | 73 | cd example |
74 | </pre> | 74 | </pre> |
75 | 75 | ||
76 | <li> Generate a Makefile: | 76 | <li> Generate a Makefile: |
77 | 77 | ||
78 | <pre> | 78 | <pre> |
79 | tmake -o Makefile example.pro | 79 | tmake -o Makefile example.pro |
80 | </pre> | 80 | </pre> |
81 | 81 | ||
82 | <li> Build the example: | 82 | <li> Build the example: |
83 | 83 | ||
84 | <pre> | 84 | <pre> |
85 | make | 85 | make |
86 | </pre> | 86 | </pre> |
87 | 87 | ||
88 | <li> Install it: | 88 | <li> Install it: |
89 | 89 | ||
90 | <pre> | 90 | <pre> |
91 | su # root privileges required to install | 91 | su # root privileges required to install |
92 | cp example.desktop $QPEDIR/apps/Applications | 92 | cp example.desktop $OPIEDIR/apps/Applications |
93 | cp Example.png $QPEDIR/pics | 93 | cp Example.png $OPIEDIR/pics |
94 | cp example $QPEDIR/bin | 94 | cp example $OPIEDIR/bin |
95 | exit # no need to be root anymore | 95 | exit # no need to be root anymore |
96 | </pre> | 96 | </pre> |
97 | 97 | ||
98 | <li> To run it, first run the Qt Virtual Framebuffer: | 98 | <li> To run it, first run the Qt Virtual Framebuffer: |
99 | 99 | ||
100 | <pre> | 100 | <pre> |
101 | qvfb & | 101 | qvfb & |
102 | </pre> | 102 | </pre> |
103 | 103 | ||
104 | <li> Then run the <i>Qtopia</i> environment: | 104 | <li> Then run the <i>Qtopia</i> environment: |
105 | 105 | ||
106 | <pre> | 106 | <pre> |
@@ -126,25 +126,25 @@ to your project file (e.g. <tt>example.pro</tt>) and rerun the | |||
126 | 126 | ||
127 | <p> | 127 | <p> |
128 | To build you application for the SHARP SL5000 rather than just running | 128 | To build you application for the SHARP SL5000 rather than just running |
129 | on the desktop, the process is similar: | 129 | on the desktop, the process is similar: |
130 | 130 | ||
131 | <ol> | 131 | <ol> |
132 | <li> | 132 | <li> |
133 | <p> | 133 | <p> |
134 | Check the environment is correctly set for the SHARP SL5000: | 134 | Check the environment is correctly set for the SHARP SL5000: |
135 | 135 | ||
136 | <p> | 136 | <p> |
137 | <pre> | 137 | <pre> |
138 | export QPEDIR=/opt/Qtopia/sharp | 138 | export OPIEDIR=/opt/Qtopia/sharp |
139 | export QTDIR=/opt/Qtopia/sharp | 139 | export QTDIR=/opt/Qtopia/sharp |
140 | export PATH=$QTDIR/bin:/usr/local/arm/bin:$PATH | 140 | export PATH=$QTDIR/bin:/usr/local/arm/bin:$PATH |
141 | export TMAKEPATH=/opt/Qtopia/tmake/lib/qws/linux-sharp-g++ | 141 | export TMAKEPATH=/opt/Qtopia/tmake/lib/qws/linux-sharp-g++ |
142 | </pre> | 142 | </pre> |
143 | 143 | ||
144 | <li> Build and install exactly the same as you did for the desktop | 144 | <li> Build and install exactly the same as you did for the desktop |
145 | (note that the generated Makefile is different): | 145 | (note that the generated Makefile is different): |
146 | <pre> | 146 | <pre> |
147 | make clean | 147 | make clean |
148 | tmake -o Makefile example.pro | 148 | tmake -o Makefile example.pro |
149 | ... <i>etc.</i> | 149 | ... <i>etc.</i> |
150 | </pre> | 150 | </pre> |
diff --git a/etc/init.d/qpe b/etc/init.d/qpe index 12bb1df..8791e73 100755 --- a/etc/init.d/qpe +++ b/etc/init.d/qpe | |||
@@ -1,39 +1,39 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # | 2 | # |
3 | 3 | ||
4 | export LOGNAME=root | 4 | export LOGNAME=root |
5 | export HOME=/$LOGNAME | 5 | export HOME=/$LOGNAME |
6 | export QWS_DISPLAY=Transformed:Rot270:0 | 6 | export QWS_DISPLAY=Transformed:Rot270:0 |
7 | export QTDIR=/usr | 7 | export QTDIR=/usr |
8 | export QPEDIR=/opt/QtPalmtop | 8 | export OPIEDIR=/opt/QtPalmtop |
9 | if [ ! -x $QPEDIR/bin/qpe ] ; then exit 0 ; fi | 9 | if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi |
10 | 10 | ||
11 | $QPEDIR/bin/qpe-reorgfiles | 11 | $OPIEDIR/bin/qpe-reorgfiles |
12 | 12 | ||
13 | . /etc/profile | 13 | . /etc/profile |
14 | 14 | ||
15 | killproc() { | 15 | killproc() { |
16 | pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` | 16 | pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` |
17 | [ "$pid" != "" ] && kill $pid | 17 | [ "$pid" != "" ] && kill $pid |
18 | } | 18 | } |
19 | 19 | ||
20 | case $1 in | 20 | case $1 in |
21 | 'start') | 21 | 'start') |
22 | echo "Starting QPE..." | 22 | echo "Starting QPE..." |
23 | 23 | ||
24 | cd $HOME | 24 | cd $HOME |
25 | 25 | ||
26 | rm -f /etc/rc2.d/S99x # Can't have both running! | 26 | rm -f /etc/rc2.d/S99x # Can't have both running! |
27 | 27 | ||
28 | $QPEDIR/bin/qpe 2>/dev/null >/dev/null & | 28 | $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & |
29 | 29 | ||
30 | ;; | 30 | ;; |
31 | 'stop') | 31 | 'stop') |
32 | echo "Killing QPE..." | 32 | echo "Killing QPE..." |
33 | killproc qpe | 33 | killproc qpe |
34 | ;; | 34 | ;; |
35 | *) | 35 | *) |
36 | echo "usage: $0 { start | stop }" | 36 | echo "usage: $0 { start | stop }" |
37 | ;; | 37 | ;; |
38 | esac | 38 | esac |
39 | 39 | ||
diff --git a/example/example.pro b/example/example.pro index 2d89311..d150b1c 100644 --- a/example/example.pro +++ b/example/example.pro | |||
@@ -1,10 +1,10 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | #CONFIG = qt warn_on debug | 2 | #CONFIG = qt warn_on debug |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = example.h | 4 | HEADERS = example.h |
5 | SOURCES = main.cpp example.cpp | 5 | SOURCES = main.cpp example.cpp |
6 | INCLUDEPATH+= $(QPEDIR)/include | 6 | INCLUDEPATH+= $(OPIEDIR)/include |
7 | DEPENDPATH+= $(QPEDIR)/include | 7 | DEPENDPATH+= $(OPIEDIR)/include |
8 | LIBS += -lqpe | 8 | LIBS += -lqpe |
9 | INTERFACES= examplebase.ui | 9 | INTERFACES= examplebase.ui |
10 | TARGET = example | 10 | TARGET = example |
diff --git a/freetype/freetype.pro b/freetype/freetype.pro index 841f6d4..f63a087 100644 --- a/freetype/freetype.pro +++ b/freetype/freetype.pro | |||
@@ -1,13 +1,13 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS =fontfactoryttf_qws.h freetypefactoryimpl.h | 3 | HEADERS =fontfactoryttf_qws.h freetypefactoryimpl.h |
4 | SOURCES =fontfactoryttf_qws.cpp freetypefactoryimpl.cpp | 4 | SOURCES =fontfactoryttf_qws.cpp freetypefactoryimpl.cpp |
5 | qt2:HEADERS+= qfontdata_p.h | 5 | qt2:HEADERS+= qfontdata_p.h |
6 | TARGET = freetypefactory | 6 | TARGET = freetypefactory |
7 | DESTDIR = ../plugins/fontfactories | 7 | DESTDIR = ../plugins/fontfactories |
8 | INCLUDEPATH += $(QPEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(QPEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
10 | #INCLUDEPATH += $(QPEDIR)/include | 10 | #INCLUDEPATH += $(OPIEDIR)/include |
11 | #DEPENDPATH+= /usr/local/include/freetype2 | 11 | #DEPENDPATH+= /usr/local/include/freetype2 |
12 | LIBS += -lqpe -lfreetype | 12 | LIBS += -lqpe -lfreetype |
13 | VERSION = 1.0.0 | 13 | VERSION = 1.0.0 |
diff --git a/inputmethods/handwriting/Makefile.in b/inputmethods/handwriting/Makefile.in index aabb5aa..cd2b47c 100644 --- a/inputmethods/handwriting/Makefile.in +++ b/inputmethods/handwriting/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/inputmethods/ | 17 | DESTDIR = ../../plugins/inputmethods/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= qhandwriting | 21 | TARGET= qhandwriting |
diff --git a/inputmethods/handwriting/handwriting.pro b/inputmethods/handwriting/handwriting.pro index 999552b..9bccbb9 100644 --- a/inputmethods/handwriting/handwriting.pro +++ b/inputmethods/handwriting/handwriting.pro | |||
@@ -16,18 +16,18 @@ SOURCES = qimpenchar.cpp \ | |||
16 | qimpencombining.cpp \ | 16 | qimpencombining.cpp \ |
17 | qimpenhelp.cpp \ | 17 | qimpenhelp.cpp \ |
18 | qimpeninput.cpp \ | 18 | qimpeninput.cpp \ |
19 | qimpenmatch.cpp \ | 19 | qimpenmatch.cpp \ |
20 | qimpensetup.cpp \ | 20 | qimpensetup.cpp \ |
21 | qimpenstroke.cpp \ | 21 | qimpenstroke.cpp \ |
22 | qimpenwidget.cpp \ | 22 | qimpenwidget.cpp \ |
23 | qimpenwordpick.cpp \ | 23 | qimpenwordpick.cpp \ |
24 | handwritingimpl.cpp | 24 | handwritingimpl.cpp |
25 | INTERFACES = qimpenprefbase.ui | 25 | INTERFACES = qimpenprefbase.ui |
26 | TARGET = qhandwriting | 26 | TARGET = qhandwriting |
27 | DESTDIR = ../../plugins/inputmethods | 27 | DESTDIR = ../../plugins/inputmethods |
28 | INCLUDEPATH += $(QPEDIR)/include | 28 | INCLUDEPATH += $(OPIEDIR)/include |
29 | DEPENDPATH += ../$(QPEDIR)/include ../../taskbar | 29 | DEPENDPATH += ../$(OPIEDIR)/include ../../taskbar |
30 | LIBS += -lqpe | 30 | LIBS += -lqpe |
31 | VERSION = 1.0.0 | 31 | VERSION = 1.0.0 |
32 | 32 | ||
33 | TRANSLATIONS += ../../i18n/de/libqhandwriting.ts | 33 | TRANSLATIONS += ../../i18n/de/libqhandwriting.ts |
diff --git a/inputmethods/keyboard/Makefile.in b/inputmethods/keyboard/Makefile.in index 3631807..16fdcb7 100644 --- a/inputmethods/keyboard/Makefile.in +++ b/inputmethods/keyboard/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/inputmethods/ | 17 | DESTDIR = ../../plugins/inputmethods/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= qkeyboard | 21 | TARGET= qkeyboard |
diff --git a/inputmethods/keyboard/keyboard.pro b/inputmethods/keyboard/keyboard.pro index 87c838e..6e9df79 100644 --- a/inputmethods/keyboard/keyboard.pro +++ b/inputmethods/keyboard/keyboard.pro | |||
@@ -1,18 +1,18 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= keyboard.h \ | 3 | HEADERS= keyboard.h \ |
4 | ../pickboard/pickboardcfg.h \ | 4 | ../pickboard/pickboardcfg.h \ |
5 | ../pickboard/pickboardpicks.h \ | 5 | ../pickboard/pickboardpicks.h \ |
6 | keyboardimpl.h | 6 | keyboardimpl.h |
7 | SOURCES= keyboard.cpp \ | 7 | SOURCES= keyboard.cpp \ |
8 | ../pickboard/pickboardcfg.cpp \ | 8 | ../pickboard/pickboardcfg.cpp \ |
9 | ../pickboard/pickboardpicks.cpp \ | 9 | ../pickboard/pickboardpicks.cpp \ |
10 | keyboardimpl.cpp | 10 | keyboardimpl.cpp |
11 | TARGET = qkeyboard | 11 | TARGET = qkeyboard |
12 | DESTDIR = ../../plugins/inputmethods | 12 | DESTDIR = ../../plugins/inputmethods |
13 | INCLUDEPATH += $(QPEDIR)/include | 13 | INCLUDEPATH += $(OPIEDIR)/include |
14 | DEPENDPATH += ../$(QPEDIR)/include ../../taskbar | 14 | DEPENDPATH += ../$(OPIEDIR)/include ../../taskbar |
15 | LIBS += -lqpe | 15 | LIBS += -lqpe |
16 | VERSION = 1.0.0 | 16 | VERSION = 1.0.0 |
17 | 17 | ||
18 | TRANSLATIONS += ../../i18n/de/libqkeyboard.ts | 18 | TRANSLATIONS += ../../i18n/de/libqkeyboard.ts |
diff --git a/inputmethods/pickboard/Makefile.in b/inputmethods/pickboard/Makefile.in index d72e82d..44310a4 100644 --- a/inputmethods/pickboard/Makefile.in +++ b/inputmethods/pickboard/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/inputmethods/ | 17 | DESTDIR = ../../plugins/inputmethods/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= qpickboard | 21 | TARGET= qpickboard |
diff --git a/inputmethods/pickboard/pickboard.pro b/inputmethods/pickboard/pickboard.pro index 50bc342..ad86370 100644 --- a/inputmethods/pickboard/pickboard.pro +++ b/inputmethods/pickboard/pickboard.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= pickboard.h pickboardcfg.h pickboardimpl.h pickboardpicks.h | 3 | HEADERS= pickboard.h pickboardcfg.h pickboardimpl.h pickboardpicks.h |
4 | SOURCES= pickboard.cpp pickboardcfg.cpp pickboardimpl.cpp pickboardpicks.cpp | 4 | SOURCES= pickboard.cpp pickboardcfg.cpp pickboardimpl.cpp pickboardpicks.cpp |
5 | TARGET = qpickboard | 5 | TARGET = qpickboard |
6 | DESTDIR = ../../plugins/inputmethods | 6 | DESTDIR = ../../plugins/inputmethods |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(QPEDIR)/include ../../taskbar | 8 | DEPENDPATH += ../$(OPIEDIR)/include ../../taskbar |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS += ../../i18n/de/libqpickboard.ts | 12 | TRANSLATIONS += ../../i18n/de/libqpickboard.ts |
diff --git a/inputmethods/unikeyboard/Makefile.in b/inputmethods/unikeyboard/Makefile.in index ebbab50..f64d6c8 100644 --- a/inputmethods/unikeyboard/Makefile.in +++ b/inputmethods/unikeyboard/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../plugins/inputmethods/ | 17 | DESTDIR = ../../plugins/inputmethods/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= qunikeyboard | 21 | TARGET= qunikeyboard |
diff --git a/inputmethods/unikeyboard/unikeyboard.pro b/inputmethods/unikeyboard/unikeyboard.pro index c0aad42..509db07 100644 --- a/inputmethods/unikeyboard/unikeyboard.pro +++ b/inputmethods/unikeyboard/unikeyboard.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= unikeyboard.h unikeyboardimpl.h | 3 | HEADERS= unikeyboard.h unikeyboardimpl.h |
4 | SOURCES= unikeyboard.cpp unikeyboardimpl.cpp | 4 | SOURCES= unikeyboard.cpp unikeyboardimpl.cpp |
5 | TARGET = qunikeyboard | 5 | TARGET = qunikeyboard |
6 | DESTDIR = ../../plugins/inputmethods | 6 | DESTDIR = ../../plugins/inputmethods |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(QPEDIR)/include ../../taskbar | 8 | DEPENDPATH += ../$(OPIEDIR)/include ../../taskbar |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS += ../../i18n/de/libqunikeyboard.ts | 12 | TRANSLATIONS += ../../i18n/de/libqunikeyboard.ts |
diff --git a/library/Makefile.in b/library/Makefile.in index c89390f..b74b818 100644 --- a/library/Makefile.in +++ b/library/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) | 8 | CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) |
9 | INCPATH =-I$(QPEDIR)/include -Ibackend | 9 | INCPATH =-I$(OPIEDIR)/include -Ibackend |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -ldl -lcrypt -lm $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -ldl -lcrypt -lm $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QTDIR)/lib$(PROJMAK)/ | 17 | DESTDIR = $(QTDIR)/lib$(PROJMAK)/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 5 | 19 | VER_MIN = 5 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= qpe | 21 | TARGET= qpe |
@@ -448,25 +448,26 @@ qpeapplication.o: qpeapplication.cpp \ | |||
448 | qpeapplication.h \ | 448 | qpeapplication.h \ |
449 | qpedecoration_qws.h \ | 449 | qpedecoration_qws.h \ |
450 | timestring.h \ | 450 | timestring.h \ |
451 | qpestyle.h \ | 451 | qpestyle.h \ |
452 | lightstyle.h \ | 452 | lightstyle.h \ |
453 | global.h \ | 453 | global.h \ |
454 | resource.h \ | 454 | resource.h \ |
455 | config.h \ | 455 | config.h \ |
456 | network.h \ | 456 | network.h \ |
457 | fontmanager.h \ | 457 | fontmanager.h \ |
458 | power.h \ | 458 | power.h \ |
459 | alarmserver.h \ | 459 | alarmserver.h \ |
460 | applnk.h | 460 | applnk.h \ |
461 | qpemenubar.h | ||
461 | 462 | ||
462 | qpestyle.o: qpestyle.cpp \ | 463 | qpestyle.o: qpestyle.cpp \ |
463 | qpestyle.h \ | 464 | qpestyle.h \ |
464 | qpeapplication.h \ | 465 | qpeapplication.h \ |
465 | qpedecoration_qws.h \ | 466 | qpedecoration_qws.h \ |
466 | timestring.h | 467 | timestring.h |
467 | 468 | ||
468 | qpedialog.o: qpedialog.cpp \ | 469 | qpedialog.o: qpedialog.cpp \ |
469 | qpedialog.h \ | 470 | qpedialog.h \ |
470 | qpeapplication.h \ | 471 | qpeapplication.h \ |
471 | qpedecoration_qws.h \ | 472 | qpedecoration_qws.h \ |
472 | timestring.h | 473 | timestring.h |
@@ -524,25 +525,26 @@ timestring.o: timestring.cpp \ | |||
524 | qpeapplication.h \ | 525 | qpeapplication.h \ |
525 | qpedecoration_qws.h \ | 526 | qpedecoration_qws.h \ |
526 | config.h | 527 | config.h |
527 | 528 | ||
528 | fontdatabase.o: fontdatabase.cpp \ | 529 | fontdatabase.o: fontdatabase.cpp \ |
529 | qpeapplication.h \ | 530 | qpeapplication.h \ |
530 | qpedecoration_qws.h \ | 531 | qpedecoration_qws.h \ |
531 | timestring.h \ | 532 | timestring.h \ |
532 | fontfactoryinterface.h \ | 533 | fontfactoryinterface.h \ |
533 | fontdatabase.h | 534 | fontdatabase.h |
534 | 535 | ||
535 | power.o: power.cpp \ | 536 | power.o: power.cpp \ |
536 | power.h | 537 | power.h \ |
538 | custom.h | ||
537 | 539 | ||
538 | storage.o: storage.cpp | 540 | storage.o: storage.cpp |
539 | 541 | ||
540 | qpemessagebox.o: qpemessagebox.cpp \ | 542 | qpemessagebox.o: qpemessagebox.cpp \ |
541 | qpemessagebox.h | 543 | qpemessagebox.h |
542 | 544 | ||
543 | backend/timeconversion.o: backend/timeconversion.cpp \ | 545 | backend/timeconversion.o: backend/timeconversion.cpp \ |
544 | backend/timeconversion.h | 546 | backend/timeconversion.h |
545 | 547 | ||
546 | qpedebug.o: qpedebug.cpp \ | 548 | qpedebug.o: qpedebug.cpp \ |
547 | qpedebug.h | 549 | qpedebug.h |
548 | 550 | ||
@@ -601,25 +603,26 @@ categoryselect.o: categoryselect.cpp \ | |||
601 | 603 | ||
602 | categorywidget.o: categorywidget.cpp \ | 604 | categorywidget.o: categorywidget.cpp \ |
603 | categoryedit_p.h \ | 605 | categoryedit_p.h \ |
604 | categoryeditbase_p.h \ | 606 | categoryeditbase_p.h \ |
605 | categorywidget.h | 607 | categorywidget.h |
606 | 608 | ||
607 | ir.o: ir.cpp \ | 609 | ir.o: ir.cpp \ |
608 | ir.h \ | 610 | ir.h \ |
609 | qcopenvelope_qws.h \ | 611 | qcopenvelope_qws.h \ |
610 | applnk.h | 612 | applnk.h |
611 | 613 | ||
612 | backend/vcc_yacc.o: backend/vcc_yacc.cpp \ | 614 | backend/vcc_yacc.o: backend/vcc_yacc.cpp \ |
613 | backend/vobject_p.h | 615 | backend/vobject_p.h \ |
616 | backend/qfiledirect_p.h | ||
614 | 617 | ||
615 | backend/vobject.o: backend/vobject.cpp \ | 618 | backend/vobject.o: backend/vobject.cpp \ |
616 | backend/vobject_p.h \ | 619 | backend/vobject_p.h \ |
617 | backend/qfiledirect_p.h | 620 | backend/qfiledirect_p.h |
618 | 621 | ||
619 | findwidget_p.o: findwidget_p.cpp \ | 622 | findwidget_p.o: findwidget_p.cpp \ |
620 | findwidget_p.h \ | 623 | findwidget_p.h \ |
621 | findwidgetbase_p.h | 624 | findwidgetbase_p.h |
622 | 625 | ||
623 | finddialog.o: finddialog.cpp \ | 626 | finddialog.o: finddialog.cpp \ |
624 | finddialog.h \ | 627 | finddialog.h \ |
625 | findwidget_p.h \ | 628 | findwidget_p.h \ |
@@ -670,38 +673,33 @@ categoryeditbase_p.cpp: categoryeditbase_p.ui | |||
670 | findwidgetbase_p.h: findwidgetbase_p.ui | 673 | findwidgetbase_p.h: findwidgetbase_p.ui |
671 | $(UIC) findwidgetbase_p.ui -o $(INTERFACE_DECL_PATH)/findwidgetbase_p.h | 674 | $(UIC) findwidgetbase_p.ui -o $(INTERFACE_DECL_PATH)/findwidgetbase_p.h |
672 | 675 | ||
673 | findwidgetbase_p.cpp: findwidgetbase_p.ui | 676 | findwidgetbase_p.cpp: findwidgetbase_p.ui |
674 | $(UIC) findwidgetbase_p.ui -i findwidgetbase_p.h -o findwidgetbase_p.cpp | 677 | $(UIC) findwidgetbase_p.ui -i findwidgetbase_p.h -o findwidgetbase_p.cpp |
675 | 678 | ||
676 | lnkpropertiesbase_p.h: lnkpropertiesbase_p.ui | 679 | lnkpropertiesbase_p.h: lnkpropertiesbase_p.ui |
677 | $(UIC) lnkpropertiesbase_p.ui -o $(INTERFACE_DECL_PATH)/lnkpropertiesbase_p.h | 680 | $(UIC) lnkpropertiesbase_p.ui -o $(INTERFACE_DECL_PATH)/lnkpropertiesbase_p.h |
678 | 681 | ||
679 | lnkpropertiesbase_p.cpp: lnkpropertiesbase_p.ui | 682 | lnkpropertiesbase_p.cpp: lnkpropertiesbase_p.ui |
680 | $(UIC) lnkpropertiesbase_p.ui -i lnkpropertiesbase_p.h -o lnkpropertiesbase_p.cpp | 683 | $(UIC) lnkpropertiesbase_p.ui -i lnkpropertiesbase_p.h -o lnkpropertiesbase_p.cpp |
681 | 684 | ||
682 | passwordbase_p.o: passwordbase_p.cpp \ | 685 | passwordbase_p.o: passwordbase_p.cpp |
683 | passwordbase_p.h | ||
684 | 686 | ||
685 | proxiesbase_p.o: proxiesbase_p.cpp \ | 687 | proxiesbase_p.o: proxiesbase_p.cpp |
686 | proxiesbase_p.h | ||
687 | 688 | ||
688 | categoryeditbase_p.o: categoryeditbase_p.cpp \ | 689 | categoryeditbase_p.o: categoryeditbase_p.cpp |
689 | categoryeditbase_p.h | ||
690 | 690 | ||
691 | findwidgetbase_p.o: findwidgetbase_p.cpp \ | 691 | findwidgetbase_p.o: findwidgetbase_p.cpp |
692 | findwidgetbase_p.h | ||
693 | 692 | ||
694 | lnkpropertiesbase_p.o: lnkpropertiesbase_p.cpp \ | 693 | lnkpropertiesbase_p.o: lnkpropertiesbase_p.cpp |
695 | lnkpropertiesbase_p.h | ||
696 | 694 | ||
697 | moc_menubutton.o: moc_menubutton.cpp \ | 695 | moc_menubutton.o: moc_menubutton.cpp \ |
698 | menubutton.h | 696 | menubutton.h |
699 | 697 | ||
700 | moc_proxies.o: moc_proxies.cpp \ | 698 | moc_proxies.o: moc_proxies.cpp \ |
701 | proxies.h \ | 699 | proxies.h \ |
702 | config.h | 700 | config.h |
703 | 701 | ||
704 | moc_datebookmonth.o: moc_datebookmonth.cpp \ | 702 | moc_datebookmonth.o: moc_datebookmonth.cpp \ |
705 | datebookmonth.h \ | 703 | datebookmonth.h \ |
706 | calendar.h \ | 704 | calendar.h \ |
707 | timestring.h | 705 | timestring.h |
diff --git a/library/global.cpp b/library/global.cpp index e1bbf3e..e5fc2b3 100644 --- a/library/global.cpp +++ b/library/global.cpp | |||
@@ -125,25 +125,25 @@ void StartingAppList::handleNewChannel( const QString & name ) | |||
125 | { | 125 | { |
126 | #if QT_VERSION >= 232 && !defined(QT_NO_COP) | 126 | #if QT_VERSION >= 232 && !defined(QT_NO_COP) |
127 | dict.remove( name ); | 127 | dict.remove( name ); |
128 | #endif | 128 | #endif |
129 | } | 129 | } |
130 | 130 | ||
131 | static bool docDirCreated = FALSE; | 131 | static bool docDirCreated = FALSE; |
132 | static QDawg* fixed_dawg = 0; | 132 | static QDawg* fixed_dawg = 0; |
133 | static QDict<QDawg> *named_dawg = 0; | 133 | static QDict<QDawg> *named_dawg = 0; |
134 | 134 | ||
135 | static QString qpeDir() | 135 | static QString qpeDir() |
136 | { | 136 | { |
137 | QString dir = getenv("QPEDIR"); | 137 | QString dir = getenv("OPIEDIR"); |
138 | if ( dir.isEmpty() ) dir = ".."; | 138 | if ( dir.isEmpty() ) dir = ".."; |
139 | return dir; | 139 | return dir; |
140 | } | 140 | } |
141 | 141 | ||
142 | static QString dictDir() | 142 | static QString dictDir() |
143 | { | 143 | { |
144 | return qpeDir() + "/etc/dict"; | 144 | return qpeDir() + "/etc/dict"; |
145 | } | 145 | } |
146 | 146 | ||
147 | /*! | 147 | /*! |
148 | \class Global global.h | 148 | \class Global global.h |
149 | \brief The Global class collects application-wide global functions. | 149 | \brief The Global class collects application-wide global functions. |
diff --git a/library/library.pro b/library/library.pro index 06dfc8f..058d216 100644 --- a/library/library.pro +++ b/library/library.pro | |||
@@ -110,23 +110,23 @@ SOURCES = calendar.cpp \ | |||
110 | ir.cpp \ | 110 | ir.cpp \ |
111 | backend/vcc_yacc.cpp \ | 111 | backend/vcc_yacc.cpp \ |
112 | backend/vobject.cpp \ | 112 | backend/vobject.cpp \ |
113 | findwidget_p.cpp \ | 113 | findwidget_p.cpp \ |
114 | finddialog.cpp \ | 114 | finddialog.cpp \ |
115 | lnkproperties.cpp | 115 | lnkproperties.cpp |
116 | 116 | ||
117 | # Qt 3 compatibility | 117 | # Qt 3 compatibility |
118 | qt2:HEADERS += quuid.h qcom.h qlibrary.h qlibrary_p.h qprocess.h | 118 | qt2:HEADERS += quuid.h qcom.h qlibrary.h qlibrary_p.h qprocess.h |
119 | qt2:SOURCES += quuid.cpp qlibrary.cpp qlibrary_unix.cpp qprocess.cpp \ | 119 | qt2:SOURCES += quuid.cpp qlibrary.cpp qlibrary_unix.cpp qprocess.cpp \ |
120 | qprocess_unix.cpp | 120 | qprocess_unix.cpp |
121 | 121 | ||
122 | INCLUDEPATH += $(QPEDIR)/include backend | 122 | INCLUDEPATH += $(OPIEDIR)/include backend |
123 | LIBS += -ldl -lcrypt -lm | 123 | LIBS += -ldl -lcrypt -lm |
124 | 124 | ||
125 | INTERFACES = passwordbase_p.ui proxiesbase_p.ui categoryeditbase_p.ui findwidgetbase_p.ui lnkpropertiesbase_p.ui | 125 | INTERFACES = passwordbase_p.ui proxiesbase_p.ui categoryeditbase_p.ui findwidgetbase_p.ui lnkpropertiesbase_p.ui |
126 | 126 | ||
127 | TARGET = qpe | 127 | TARGET = qpe |
128 | DESTDIR = $(QTDIR)/lib$(PROJMAK) | 128 | DESTDIR = $(QTDIR)/lib$(PROJMAK) |
129 | # This is set by configure$(QPEDIR). | 129 | # This is set by configure$(OPIEDIR). |
130 | VERSION = 1.5.0 | 130 | VERSION = 1.5.0 |
131 | 131 | ||
132 | TRANSLATIONS = ../i18n/de/libqpe.ts | 132 | TRANSLATIONS = ../i18n/de/libqpe.ts |
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index f0a68cf..70ffec1 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -781,29 +781,29 @@ QPEApplication::~QPEApplication() | |||
781 | { | 781 | { |
782 | ungrabKeyboard(); | 782 | ungrabKeyboard(); |
783 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 783 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) |
784 | // Need to delete QCopChannels early, since the display will | 784 | // Need to delete QCopChannels early, since the display will |
785 | // be gone by the time we get to ~QObject(). | 785 | // be gone by the time we get to ~QObject(). |
786 | delete sysChannel; | 786 | delete sysChannel; |
787 | delete pidChannel; | 787 | delete pidChannel; |
788 | #endif | 788 | #endif |
789 | delete d; | 789 | delete d; |
790 | } | 790 | } |
791 | 791 | ||
792 | /*! | 792 | /*! |
793 | Returns <tt>$QPEDIR/</tt>. | 793 | Returns <tt>$OPIEDIR/</tt>. |
794 | */ | 794 | */ |
795 | QString QPEApplication::qpeDir() | 795 | QString QPEApplication::qpeDir() |
796 | { | 796 | { |
797 | const char *base = getenv( "QPEDIR" ); | 797 | const char *base = getenv( "OPIEDIR" ); |
798 | if ( base ) | 798 | if ( base ) |
799 | return QString( base ) + "/"; | 799 | return QString( base ) + "/"; |
800 | 800 | ||
801 | return QString( "../" ); | 801 | return QString( "../" ); |
802 | } | 802 | } |
803 | 803 | ||
804 | /*! | 804 | /*! |
805 | Returns the user's current Document directory. There is a trailing "/". | 805 | Returns the user's current Document directory. There is a trailing "/". |
806 | */ | 806 | */ |
807 | QString QPEApplication::documentDir() | 807 | QString QPEApplication::documentDir() |
808 | { | 808 | { |
809 | const char *base = getenv( "HOME" ); | 809 | const char *base = getenv( "HOME" ); |
@@ -1,26 +1,26 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | QTE_VERSION=2.3.2 | 3 | QTE_VERSION=2.3.2 |
4 | DEB_VERSION=2.0 | 4 | DEB_VERSION=2.0 |
5 | 5 | ||
6 | # Have to do this here, since CVS can't store symlinks | 6 | # Have to do this here, since CVS can't store symlinks |
7 | mkdir -p etc/rc2.d | 7 | mkdir -p etc/rc2.d |
8 | rm -f etc/rc2.d/S98qpe | 8 | rm -f etc/rc2.d/S98qpe |
9 | ln -s ../init.d/qpe etc/rc2.d/S98qpe | 9 | ln -s ../init.d/qpe etc/rc2.d/S98qpe |
10 | 10 | ||
11 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$QPEDIR/include/qpe/version.h) | 11 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) |
12 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$QPEDIR/include/qpe/version.h) | 12 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) |
13 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$QPEDIR/include/qpe/version.h) | 13 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/include/qpe/version.h) |
14 | if grep -q 'QPE_VERSION .*snapshot' $QPEDIR/include/qpe/version.h | 14 | if grep -q 'QPE_VERSION .*snapshot' $OPIEDIR/include/qpe/version.h |
15 | then | 15 | then |
16 | VERSION_CVS="_$(date +%Y%m%d)" | 16 | VERSION_CVS="_$(date +%Y%m%d)" |
17 | else | 17 | else |
18 | VERSION_CVS="" | 18 | VERSION_CVS="" |
19 | fi | 19 | fi |
20 | 20 | ||
21 | QPE_VERSION=$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT | 21 | QPE_VERSION=$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT |
22 | 22 | ||
23 | ARCH=arm | 23 | ARCH=arm |
24 | STRIP=arm-linux-strip | 24 | STRIP=arm-linux-strip |
25 | STRIP_FILES="*Advanced RISC Machines ARM*not stripped" | 25 | STRIP_FILES="*Advanced RISC Machines ARM*not stripped" |
26 | 26 | ||
@@ -38,52 +38,52 @@ do | |||
38 | case "$1" in | 38 | case "$1" in |
39 | -v) | 39 | -v) |
40 | VERB=1 | 40 | VERB=1 |
41 | echo >&2 "Packaging for version $VERSION_MAJ.$VERSION_MIN.$VERSION_PAT$VERSION_CVS" | 41 | echo >&2 "Packaging for version $VERSION_MAJ.$VERSION_MIN.$VERSION_PAT$VERSION_CVS" |
42 | ;; -l) | 42 | ;; -l) |
43 | LIST=1 | 43 | LIST=1 |
44 | ;; -i) | 44 | ;; -i) |
45 | shift | 45 | shift |
46 | IMAGEDIR=$1 | 46 | IMAGEDIR=$1 |
47 | DATADIR=$IMAGEDIR | 47 | DATADIR=$IMAGEDIR |
48 | mkdir -p $IMAGEDIR | 48 | mkdir -p $IMAGEDIR |
49 | ;; -rpm) | 49 | ;; -rpm) |
50 | if [ "$QPEDIR" != "/opt/Qtopia" ] | 50 | if [ "$OPIEDIR" != "/opt/Qtopia" ] |
51 | then | 51 | then |
52 | echo >&2 '$QPEDIR is not the standard /usr/Qtopia directory.' | 52 | echo >&2 '$OPIEDIR is not the standard /usr/Qtopia directory.' |
53 | sleep 1 | 53 | sleep 1 |
54 | #exit 1 | 54 | #exit 1 |
55 | fi | 55 | fi |
56 | RPM=1 | 56 | RPM=1 |
57 | ;; -arch) | 57 | ;; -arch) |
58 | shift | 58 | shift |
59 | ARCH=$1 | 59 | ARCH=$1 |
60 | STRIP= | 60 | STRIP= |
61 | STRIP_FILES= | 61 | STRIP_FILES= |
62 | ;; /*) | 62 | ;; /*) |
63 | FILES="$FILES $1" | 63 | FILES="$FILES $1" |
64 | ;; *) | 64 | ;; *) |
65 | FILES="$FILES $PWD/$1" | 65 | FILES="$FILES $PWD/$1" |
66 | esac | 66 | esac |
67 | shift | 67 | shift |
68 | done | 68 | done |
69 | 69 | ||
70 | 70 | ||
71 | if [ -z "$FILES" ] | 71 | if [ -z "$FILES" ] |
72 | then | 72 | then |
73 | FILES=`find $QPEDIR -name "*.control" -print` | 73 | FILES=`find $OPIEDIR -name "*.control" -print` |
74 | fi | 74 | fi |
75 | 75 | ||
76 | RDIR=$PWD | 76 | RDIR=$PWD |
77 | cd $QPEDIR | 77 | cd $OPIEDIR |
78 | 78 | ||
79 | for i in $FILES | 79 | for i in $FILES |
80 | do | 80 | do |
81 | rm -rf $TDIR | 81 | rm -rf $TDIR |
82 | 82 | ||
83 | mkdir -p $DATADIR | 83 | mkdir -p $DATADIR |
84 | mkdir -p $CTRLDIR | 84 | mkdir -p $CTRLDIR |
85 | 85 | ||
86 | packagename=${i##*/}; packagename=${packagename%.control} | 86 | packagename=${i##*/}; packagename=${packagename%.control} |
87 | version=$(eval echo '"'$(sed -n -e "s/^Version: *//p" $i)'"') | 87 | version=$(eval echo '"'$(sed -n -e "s/^Version: *//p" $i)'"') |
88 | depends=$(eval echo '"'$(sed -n -e "s/^Depends: *//p" $i)'"') | 88 | depends=$(eval echo '"'$(sed -n -e "s/^Depends: *//p" $i)'"') |
89 | files=$(eval echo $(sed -n -e "s/^Files://p" $i)) | 89 | files=$(eval echo $(sed -n -e "s/^Files://p" $i)) |
@@ -131,25 +131,25 @@ do | |||
131 | if [ -x $ff -a -n "$STRIP" ] | 131 | if [ -x $ff -a -n "$STRIP" ] |
132 | then | 132 | then |
133 | case $(file $ff) in | 133 | case $(file $ff) in |
134 | $STRIP_FILES) | 134 | $STRIP_FILES) |
135 | $STRIP $ff | 135 | $STRIP $ff |
136 | ;; *) | 136 | ;; *) |
137 | esac | 137 | esac |
138 | fi | 138 | fi |
139 | if [ -n "$RPM" ] | 139 | if [ -n "$RPM" ] |
140 | then | 140 | then |
141 | case "$ff" in | 141 | case "$ff" in |
142 | /*) RPMFILES="$RPMFILES $ff" | 142 | /*) RPMFILES="$RPMFILES $ff" |
143 | ;; *) RPMFILES="$RPMFILES $QPEDIR/$ff" | 143 | ;; *) RPMFILES="$RPMFILES $OPIEDIR/$ff" |
144 | esac | 144 | esac |
145 | else | 145 | else |
146 | mkdir -p $D | 146 | mkdir -p $D |
147 | if cp -a $ff $D | 147 | if cp -a $ff $D |
148 | then | 148 | then |
149 | true | 149 | true |
150 | else | 150 | else |
151 | ERROR=1 | 151 | ERROR=1 |
152 | fi | 152 | fi |
153 | fi | 153 | fi |
154 | else | 154 | else |
155 | echo >&2 "$0: $i: No such file: $ff" | 155 | echo >&2 "$0: $i: No such file: $ff" |
diff --git a/noncore/apps/dictionary/dictionary.pro b/noncore/apps/dictionary/dictionary.pro index e829e68..fc89411 100644 --- a/noncore/apps/dictionary/dictionary.pro +++ b/noncore/apps/dictionary/dictionary.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = ../bin | 3 | DESTDIR = ../bin |
4 | 4 | ||
5 | HEADERS= dicttool.h | 5 | HEADERS= dicttool.h |
6 | SOURCES= dicttool.cpp main.cpp | 6 | SOURCES= dicttool.cpp main.cpp |
7 | 7 | ||
8 | INTERFACES= dicttoolbase.ui | 8 | INTERFACES= dicttoolbase.ui |
9 | 9 | ||
10 | INCLUDEPATH += $(QPEDIR)/include | 10 | INCLUDEPATH += $(OPIEDIR)/include |
11 | DEPENDPATH+= $(QPEDIR)/include | 11 | DEPENDPATH+= $(OPIEDIR)/include |
12 | LIBS += -lqpe | 12 | LIBS += -lqpe |
13 | 13 | ||
14 | TARGET = dictionary | 14 | TARGET = dictionary |
diff --git a/noncore/apps/tableviewer/tableviewer.pro b/noncore/apps/tableviewer/tableviewer.pro index edd41c5..c9d068e 100644 --- a/noncore/apps/tableviewer/tableviewer.pro +++ b/noncore/apps/tableviewer/tableviewer.pro | |||
@@ -22,15 +22,15 @@ SOURCES = main.cpp \ | |||
22 | ui/tvfilterview.cpp \ | 22 | ui/tvfilterview.cpp \ |
23 | ui/browsekeyentry.cpp \ | 23 | ui/browsekeyentry.cpp \ |
24 | ui/filterkeyentry.cpp \ | 24 | ui/filterkeyentry.cpp \ |
25 | ui/tvlistview.cpp \ | 25 | ui/tvlistview.cpp \ |
26 | ui/tveditview.cpp \ | 26 | ui/tveditview.cpp \ |
27 | ui/tvkeyedit.cpp \ | 27 | ui/tvkeyedit.cpp \ |
28 | db/datacache.cpp \ | 28 | db/datacache.cpp \ |
29 | db/xmlsource.cpp \ | 29 | db/xmlsource.cpp \ |
30 | db/csvsource.cpp \ | 30 | db/csvsource.cpp \ |
31 | db/common.cpp | 31 | db/common.cpp |
32 | INTERFACES= ui/tvkeyedit_gen.ui | 32 | INTERFACES= ui/tvkeyedit_gen.ui |
33 | TARGET = tableviewer | 33 | TARGET = tableviewer |
34 | INCLUDEPATH += $(QPEDIR)/include | 34 | INCLUDEPATH += $(OPIEDIR)/include |
35 | DEPENDPATH += $(QPEDIR)/include | 35 | DEPENDPATH += $(OPIEDIR)/include |
36 | LIBS += -lqpe | 36 | LIBS += -lqpe |
diff --git a/noncore/comm/keypebble/Makefile.in b/noncore/comm/keypebble/Makefile.in index 1dbd5d2..18c43e8 100644 --- a/noncore/comm/keypebble/Makefile.in +++ b/noncore/comm/keypebble/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../bin/ | 17 | DESTDIR = ../bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= keypebble | 21 | TARGET= keypebble |
@@ -156,75 +156,75 @@ vncauth.o: vncauth.c \ | |||
156 | 156 | ||
157 | krfbbuffer.o: krfbbuffer.cpp \ | 157 | krfbbuffer.o: krfbbuffer.cpp \ |
158 | krfbdecoder.h \ | 158 | krfbdecoder.h \ |
159 | krfbbuffer.h \ | 159 | krfbbuffer.h \ |
160 | krfbserverinfo.h | 160 | krfbserverinfo.h |
161 | 161 | ||
162 | krfbcanvas.o: krfbcanvas.cpp \ | 162 | krfbcanvas.o: krfbcanvas.cpp \ |
163 | kvncconnectdlg.h \ | 163 | kvncconnectdlg.h \ |
164 | krfbconnection.h \ | 164 | krfbconnection.h \ |
165 | krfbcanvas.h \ | 165 | krfbcanvas.h \ |
166 | krfboptions.h \ | 166 | krfboptions.h \ |
167 | krfbbuffer.h \ | 167 | krfbbuffer.h \ |
168 | $(QPEDIR)/include/qpe/config.h | 168 | $(OPIEDIR)/include/qpe/config.h |
169 | 169 | ||
170 | krfbconnection.o: krfbconnection.cpp \ | 170 | krfbconnection.o: krfbconnection.cpp \ |
171 | krfbconnection.h \ | 171 | krfbconnection.h \ |
172 | krfblogin.h \ | 172 | krfblogin.h \ |
173 | krfboptions.h \ | 173 | krfboptions.h \ |
174 | krfbdecoder.h \ | 174 | krfbdecoder.h \ |
175 | krfbbuffer.h | 175 | krfbbuffer.h |
176 | 176 | ||
177 | krfbdecoder.o: krfbdecoder.cpp \ | 177 | krfbdecoder.o: krfbdecoder.cpp \ |
178 | krfbconnection.h \ | 178 | krfbconnection.h \ |
179 | krfboptions.h \ | 179 | krfboptions.h \ |
180 | krfbserverinfo.h \ | 180 | krfbserverinfo.h \ |
181 | krfbdecoder.h \ | 181 | krfbdecoder.h \ |
182 | krfbbuffer.h \ | 182 | krfbbuffer.h \ |
183 | $(QPEDIR)/include/qpe/qpeapplication.h | 183 | $(OPIEDIR)/include/qpe/qpeapplication.h |
184 | 184 | ||
185 | krfblogin.o: krfblogin.cpp \ | 185 | krfblogin.o: krfblogin.cpp \ |
186 | vncauth.h \ | 186 | vncauth.h \ |
187 | krfblogin.h \ | 187 | krfblogin.h \ |
188 | krfbconnection.h | 188 | krfbconnection.h |
189 | 189 | ||
190 | krfboptions.o: krfboptions.cpp \ | 190 | krfboptions.o: krfboptions.cpp \ |
191 | $(QPEDIR)/include/qpe/config.h \ | 191 | $(OPIEDIR)/include/qpe/config.h \ |
192 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 192 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
193 | krfboptions.h | 193 | krfboptions.h |
194 | 194 | ||
195 | kvnc.o: kvnc.cpp \ | 195 | kvnc.o: kvnc.cpp \ |
196 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 196 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
197 | $(QPEDIR)/include/qpe/qpetoolbar.h \ | 197 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ |
198 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 198 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
199 | $(QPEDIR)/include/qpe/global.h \ | 199 | $(OPIEDIR)/include/qpe/global.h \ |
200 | kvnc.h \ | 200 | kvnc.h \ |
201 | krfbcanvas.h \ | 201 | krfbcanvas.h \ |
202 | kvncoptionsdlg.h \ | 202 | kvncoptionsdlg.h \ |
203 | vncoptionsbase.h \ | 203 | vncoptionsbase.h \ |
204 | krfbconnection.h | 204 | krfbconnection.h |
205 | 205 | ||
206 | kvncconnectdlg.o: kvncconnectdlg.cpp \ | 206 | kvncconnectdlg.o: kvncconnectdlg.cpp \ |
207 | krfbconnection.h \ | 207 | krfbconnection.h \ |
208 | kvncoptionsdlg.h \ | 208 | kvncoptionsdlg.h \ |
209 | vncoptionsbase.h \ | 209 | vncoptionsbase.h \ |
210 | kvncconnectdlg.h | 210 | kvncconnectdlg.h |
211 | 211 | ||
212 | kvncoptionsdlg.o: kvncoptionsdlg.cpp \ | 212 | kvncoptionsdlg.o: kvncoptionsdlg.cpp \ |
213 | krfboptions.h \ | 213 | krfboptions.h \ |
214 | kvncoptionsdlg.h \ | 214 | kvncoptionsdlg.h \ |
215 | vncoptionsbase.h | 215 | vncoptionsbase.h |
216 | 216 | ||
217 | main.o: main.cpp \ | 217 | main.o: main.cpp \ |
218 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 218 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
219 | kvnc.h | 219 | kvnc.h |
220 | 220 | ||
221 | vncoptionsbase.h: vncoptionsbase.ui | 221 | vncoptionsbase.h: vncoptionsbase.ui |
222 | $(UIC) vncoptionsbase.ui -o $(INTERFACE_DECL_PATH)/vncoptionsbase.h | 222 | $(UIC) vncoptionsbase.ui -o $(INTERFACE_DECL_PATH)/vncoptionsbase.h |
223 | 223 | ||
224 | vncoptionsbase.cpp: vncoptionsbase.ui | 224 | vncoptionsbase.cpp: vncoptionsbase.ui |
225 | $(UIC) vncoptionsbase.ui -i vncoptionsbase.h -o vncoptionsbase.cpp | 225 | $(UIC) vncoptionsbase.ui -i vncoptionsbase.h -o vncoptionsbase.cpp |
226 | 226 | ||
227 | vncoptionsbase.o: vncoptionsbase.cpp \ | 227 | vncoptionsbase.o: vncoptionsbase.cpp \ |
228 | vncoptionsbase.h \ | 228 | vncoptionsbase.h \ |
229 | vncoptionsbase.ui | 229 | vncoptionsbase.ui |
230 | 230 | ||
diff --git a/noncore/comm/keypebble/keypebble.pro b/noncore/comm/keypebble/keypebble.pro index 6b11801..c0efc4f 100644 --- a/noncore/comm/keypebble/keypebble.pro +++ b/noncore/comm/keypebble/keypebble.pro | |||
@@ -23,16 +23,16 @@ SOURCES = d3des.c \ | |||
23 | krfbcanvas.cpp \ | 23 | krfbcanvas.cpp \ |
24 | krfbconnection.cpp \ | 24 | krfbconnection.cpp \ |
25 | krfbdecoder.cpp \ | 25 | krfbdecoder.cpp \ |
26 | krfblogin.cpp \ | 26 | krfblogin.cpp \ |
27 | krfboptions.cpp \ | 27 | krfboptions.cpp \ |
28 | kvnc.cpp \ | 28 | kvnc.cpp \ |
29 | kvncconnectdlg.cpp \ | 29 | kvncconnectdlg.cpp \ |
30 | kvncoptionsdlg.cpp \ | 30 | kvncoptionsdlg.cpp \ |
31 | main.cpp | 31 | main.cpp |
32 | INTERFACES= vncoptionsbase.ui | 32 | INTERFACES= vncoptionsbase.ui |
33 | TARGET = keypebble | 33 | TARGET = keypebble |
34 | 34 | ||
35 | INCLUDEPATH += $(QPEDIR)/include | 35 | INCLUDEPATH += $(OPIEDIR)/include |
36 | DEPENDPATH += $(QPEDIR)/include | 36 | DEPENDPATH += $(OPIEDIR)/include |
37 | LIBS += -lqpe | 37 | LIBS += -lqpe |
38 | 38 | ||
diff --git a/noncore/games/chess/chess.pro b/noncore/games/chess/chess.pro index f6650a0..9053809 100644 --- a/noncore/games/chess/chess.pro +++ b/noncore/games/chess/chess.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | SOURCES+= chess.cpp main.cpp | 1 | SOURCES+= chess.cpp main.cpp |
2 | HEADERS+= chess.h | 2 | HEADERS+= chess.h |
3 | DESTDIR = ../bin | 3 | DESTDIR = ../bin |
4 | TARGET = chess | 4 | TARGET = chess |
5 | DEPENDPATH+= $(QPEDIR)/include | 5 | DEPENDPATH+= $(OPIEDIR)/include |
6 | INTERFACES = mainwindow.ui | 6 | INTERFACES = mainwindow.ui |
7 | IMAGES= images/new.png images/repeat.png images/txt.png images/back.png | 7 | IMAGES= images/new.png images/repeat.png images/txt.png images/back.png |
8 | TEMPLATE=app | 8 | TEMPLATE=app |
9 | CONFIG+= qt warn_on release | 9 | CONFIG+= qt warn_on release |
10 | INCLUDEPATH += $(QPEDIR)/include | 10 | INCLUDEPATH += $(OPIEDIR)/include |
11 | LIBS+= -lqpe | 11 | LIBS+= -lqpe |
12 | DBFILE= chess.db | 12 | DBFILE= chess.db |
13 | LANGUAGE= C++ | 13 | LANGUAGE= C++ |
14 | CPP_ALWAYS_CREATE_SOURCE= TRUE | 14 | CPP_ALWAYS_CREATE_SOURCE= TRUE |
diff --git a/noncore/games/fifteen/Makefile.in b/noncore/games/fifteen/Makefile.in index 23c7334..1cae722 100644 --- a/noncore/games/fifteen/Makefile.in +++ b/noncore/games/fifteen/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../bin/ | 17 | DESTDIR = ../bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= fifteen | 21 | TARGET= fifteen |
@@ -91,28 +91,28 @@ REQUIRES= | |||
91 | 91 | ||
92 | ####### Sub-libraries | 92 | ####### Sub-libraries |
93 | 93 | ||
94 | 94 | ||
95 | ###### Combined headers | 95 | ###### Combined headers |
96 | 96 | ||
97 | 97 | ||
98 | 98 | ||
99 | ####### Compile | 99 | ####### Compile |
100 | 100 | ||
101 | fifteen.o: fifteen.cpp \ | 101 | fifteen.o: fifteen.cpp \ |
102 | fifteen.h \ | 102 | fifteen.h \ |
103 | $(QPEDIR)/include/qpe/resource.h \ | 103 | $(OPIEDIR)/include/qpe/resource.h \ |
104 | $(QPEDIR)/include/qpe/config.h \ | 104 | $(OPIEDIR)/include/qpe/config.h \ |
105 | $(QPEDIR)/include/qpe/qpetoolbar.h \ | 105 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ |
106 | $(QPEDIR)/include/qpe/qpemenubar.h | 106 | $(OPIEDIR)/include/qpe/qpemenubar.h |
107 | 107 | ||
108 | main.o: main.cpp \ | 108 | main.o: main.cpp \ |
109 | fifteen.h \ | 109 | fifteen.h \ |
110 | $(QPEDIR)/include/qpe/qpeapplication.h | 110 | $(OPIEDIR)/include/qpe/qpeapplication.h |
111 | 111 | ||
112 | moc_fifteen.o: moc_fifteen.cpp \ | 112 | moc_fifteen.o: moc_fifteen.cpp \ |
113 | fifteen.h | 113 | fifteen.h |
114 | 114 | ||
115 | moc_fifteen.cpp: fifteen.h | 115 | moc_fifteen.cpp: fifteen.h |
116 | $(MOC) fifteen.h -o moc_fifteen.cpp | 116 | $(MOC) fifteen.h -o moc_fifteen.cpp |
117 | 117 | ||
118 | 118 | ||
diff --git a/noncore/games/fifteen/fifteen.pro b/noncore/games/fifteen/fifteen.pro index 167f4f8..92072ab 100644 --- a/noncore/games/fifteen/fifteen.pro +++ b/noncore/games/fifteen/fifteen.pro | |||
@@ -1,10 +1,10 @@ | |||
1 | DESTDIR = ../bin | 1 | DESTDIR = ../bin |
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = fifteen.h | 4 | HEADERS = fifteen.h |
5 | SOURCES = fifteen.cpp \ | 5 | SOURCES = fifteen.cpp \ |
6 | main.cpp | 6 | main.cpp |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(QPEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = fifteen | 10 | TARGET = fifteen |
diff --git a/noncore/games/go/Makefile.in b/noncore/games/go/Makefile.in index 27304f1..985eff0 100644 --- a/noncore/games/go/Makefile.in +++ b/noncore/games/go/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../bin/ | 17 | DESTDIR = ../bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= go | 21 | TARGET= go |
@@ -125,34 +125,34 @@ goplayutils.o: goplayutils.c \ | |||
125 | go.h | 125 | go.h |
126 | 126 | ||
127 | killable.o: killable.c \ | 127 | killable.o: killable.c \ |
128 | go.h \ | 128 | go.h \ |
129 | goplayutils.h \ | 129 | goplayutils.h \ |
130 | amigo.h | 130 | amigo.h |
131 | 131 | ||
132 | gowidget.o: gowidget.cpp \ | 132 | gowidget.o: gowidget.cpp \ |
133 | gowidget.h \ | 133 | gowidget.h \ |
134 | amigo.h \ | 134 | amigo.h \ |
135 | go.h \ | 135 | go.h \ |
136 | goplayutils.h \ | 136 | goplayutils.h \ |
137 | $(QPEDIR)/include/qpe/config.h \ | 137 | $(OPIEDIR)/include/qpe/config.h \ |
138 | $(QPEDIR)/include/qpe/resource.h \ | 138 | $(OPIEDIR)/include/qpe/resource.h \ |
139 | $(QPEDIR)/include/qpe/qpetoolbar.h \ | 139 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ |
140 | $(QPEDIR)/include/qpe/qpemenubar.h | 140 | $(OPIEDIR)/include/qpe/qpemenubar.h |
141 | 141 | ||
142 | main.o: main.cpp \ | 142 | main.o: main.cpp \ |
143 | gowidget.h \ | 143 | gowidget.h \ |
144 | amigo.h \ | 144 | amigo.h \ |
145 | go.h \ | 145 | go.h \ |
146 | goplayutils.h \ | 146 | goplayutils.h \ |
147 | $(QPEDIR)/include/qpe/qpeapplication.h | 147 | $(OPIEDIR)/include/qpe/qpeapplication.h |
148 | 148 | ||
149 | moc_gowidget.o: moc_gowidget.cpp \ | 149 | moc_gowidget.o: moc_gowidget.cpp \ |
150 | gowidget.h \ | 150 | gowidget.h \ |
151 | amigo.h \ | 151 | amigo.h \ |
152 | go.h \ | 152 | go.h \ |
153 | goplayutils.h | 153 | goplayutils.h |
154 | 154 | ||
155 | moc_gowidget.cpp: gowidget.h | 155 | moc_gowidget.cpp: gowidget.h |
156 | $(MOC) gowidget.h -o moc_gowidget.cpp | 156 | $(MOC) gowidget.h -o moc_gowidget.cpp |
157 | 157 | ||
158 | 158 | ||
diff --git a/noncore/games/go/go.pro b/noncore/games/go/go.pro index deb90c5..b39b5b4 100644 --- a/noncore/games/go/go.pro +++ b/noncore/games/go/go.pro | |||
@@ -2,18 +2,18 @@ DESTDIR = ../bin | |||
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = amigo.h \ | 4 | HEADERS = amigo.h \ |
5 | go.h \ | 5 | go.h \ |
6 | goplayutils.h \ | 6 | goplayutils.h \ |
7 | gowidget.h | 7 | gowidget.h |
8 | SOURCES = amigo.c \ | 8 | SOURCES = amigo.c \ |
9 | goplayer.c \ | 9 | goplayer.c \ |
10 | goplayutils.c \ | 10 | goplayutils.c \ |
11 | killable.c \ | 11 | killable.c \ |
12 | gowidget.cpp \ | 12 | gowidget.cpp \ |
13 | main.cpp | 13 | main.cpp |
14 | INCLUDEPATH += $(QPEDIR)/include | 14 | INCLUDEPATH += $(OPIEDIR)/include |
15 | DEPENDPATH+= $(QPEDIR)/include | 15 | DEPENDPATH+= $(OPIEDIR)/include |
16 | LIBS += -lqpe | 16 | LIBS += -lqpe |
17 | TARGET = go | 17 | TARGET = go |
18 | 18 | ||
19 | TRANSLATIONS = ../i18n/de/go.ts \ No newline at end of file | 19 | TRANSLATIONS = ../i18n/de/go.ts \ No newline at end of file |
diff --git a/noncore/games/mindbreaker/Makefile.in b/noncore/games/mindbreaker/Makefile.in index 88f6fb1..ff29d19 100644 --- a/noncore/games/mindbreaker/Makefile.in +++ b/noncore/games/mindbreaker/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= mindbreaker | 21 | TARGET= mindbreaker |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =mindbreaker.h | 26 | HEADERS =mindbreaker.h |
27 | SOURCES =main.cpp \ | 27 | SOURCES =main.cpp \ |
28 | mindbreaker.cpp | 28 | mindbreaker.cpp |
29 | OBJECTS =main.o \ | 29 | OBJECTS =main.o \ |
@@ -91,27 +91,27 @@ REQUIRES= | |||
91 | 91 | ||
92 | ####### Sub-libraries | 92 | ####### Sub-libraries |
93 | 93 | ||
94 | 94 | ||
95 | ###### Combined headers | 95 | ###### Combined headers |
96 | 96 | ||
97 | 97 | ||
98 | 98 | ||
99 | ####### Compile | 99 | ####### Compile |
100 | 100 | ||
101 | main.o: main.cpp \ | 101 | main.o: main.cpp \ |
102 | mindbreaker.h \ | 102 | mindbreaker.h \ |
103 | $(QPEDIR)/include/qpe/qpeapplication.h | 103 | $(OPIEDIR)/include/qpe/qpeapplication.h |
104 | 104 | ||
105 | mindbreaker.o: mindbreaker.cpp \ | 105 | mindbreaker.o: mindbreaker.cpp \ |
106 | mindbreaker.h \ | 106 | mindbreaker.h \ |
107 | $(QPEDIR)/include/qpe/resource.h \ | 107 | $(OPIEDIR)/include/qpe/resource.h \ |
108 | $(QPEDIR)/include/qpe/config.h \ | 108 | $(OPIEDIR)/include/qpe/config.h \ |
109 | $(QPEDIR)/include/qpe/qpetoolbar.h | 109 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
110 | 110 | ||
111 | moc_mindbreaker.o: moc_mindbreaker.cpp \ | 111 | moc_mindbreaker.o: moc_mindbreaker.cpp \ |
112 | mindbreaker.h | 112 | mindbreaker.h |
113 | 113 | ||
114 | moc_mindbreaker.cpp: mindbreaker.h | 114 | moc_mindbreaker.cpp: mindbreaker.h |
115 | $(MOC) mindbreaker.h -o moc_mindbreaker.cpp | 115 | $(MOC) mindbreaker.h -o moc_mindbreaker.cpp |
116 | 116 | ||
117 | 117 | ||
diff --git a/noncore/games/mindbreaker/mindbreaker.pro b/noncore/games/mindbreaker/mindbreaker.pro index 12944d1..fa7dc0c 100644 --- a/noncore/games/mindbreaker/mindbreaker.pro +++ b/noncore/games/mindbreaker/mindbreaker.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = mindbreaker.h | 4 | HEADERS = mindbreaker.h |
5 | SOURCES = main.cpp \ | 5 | SOURCES = main.cpp \ |
6 | mindbreaker.cpp | 6 | mindbreaker.cpp |
7 | TARGET = mindbreaker | 7 | TARGET = mindbreaker |
8 | INCLUDEPATH += $(QPEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(QPEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe | 10 | LIBS += -lqpe |
11 | 11 | ||
12 | TRANSLATIONS = ../i18n/de/mindbreaker.ts | 12 | TRANSLATIONS = ../i18n/de/mindbreaker.ts |
diff --git a/noncore/games/minesweep/Makefile.in b/noncore/games/minesweep/Makefile.in index 9ed6234..67ea94c 100644 --- a/noncore/games/minesweep/Makefile.in +++ b/noncore/games/minesweep/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= minesweep | 21 | TARGET= minesweep |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =minefield.h \ | 26 | HEADERS =minefield.h \ |
27 | minesweep.h | 27 | minesweep.h |
28 | SOURCES =main.cpp \ | 28 | SOURCES =main.cpp \ |
29 | minefield.cpp \ | 29 | minefield.cpp \ |
@@ -96,37 +96,37 @@ REQUIRES= | |||
96 | 96 | ||
97 | ####### Sub-libraries | 97 | ####### Sub-libraries |
98 | 98 | ||
99 | 99 | ||
100 | ###### Combined headers | 100 | ###### Combined headers |
101 | 101 | ||
102 | 102 | ||
103 | 103 | ||
104 | ####### Compile | 104 | ####### Compile |
105 | 105 | ||
106 | main.o: main.cpp \ | 106 | main.o: main.cpp \ |
107 | minesweep.h \ | 107 | minesweep.h \ |
108 | $(QPEDIR)/include/qpe/qpeapplication.h | 108 | $(OPIEDIR)/include/qpe/qpeapplication.h |
109 | 109 | ||
110 | minefield.o: minefield.cpp \ | 110 | minefield.o: minefield.cpp \ |
111 | minefield.h \ | 111 | minefield.h \ |
112 | $(QPEDIR)/include/qpe/config.h | 112 | $(OPIEDIR)/include/qpe/config.h |
113 | 113 | ||
114 | minesweep.o: minesweep.cpp \ | 114 | minesweep.o: minesweep.cpp \ |
115 | minesweep.h \ | 115 | minesweep.h \ |
116 | minefield.h \ | 116 | minefield.h \ |
117 | $(QPEDIR)/include/qpe/resource.h \ | 117 | $(OPIEDIR)/include/qpe/resource.h \ |
118 | $(QPEDIR)/include/qpe/config.h \ | 118 | $(OPIEDIR)/include/qpe/config.h \ |
119 | $(QPEDIR)/include/qpe/qpetoolbar.h \ | 119 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ |
120 | $(QPEDIR)/include/qpe/qpemenubar.h | 120 | $(OPIEDIR)/include/qpe/qpemenubar.h |
121 | 121 | ||
122 | moc_minefield.o: moc_minefield.cpp \ | 122 | moc_minefield.o: moc_minefield.cpp \ |
123 | minefield.h | 123 | minefield.h |
124 | 124 | ||
125 | moc_minesweep.o: moc_minesweep.cpp \ | 125 | moc_minesweep.o: moc_minesweep.cpp \ |
126 | minesweep.h | 126 | minesweep.h |
127 | 127 | ||
128 | moc_minefield.cpp: minefield.h | 128 | moc_minefield.cpp: minefield.h |
129 | $(MOC) minefield.h -o moc_minefield.cpp | 129 | $(MOC) minefield.h -o moc_minefield.cpp |
130 | 130 | ||
131 | moc_minesweep.cpp: minesweep.h | 131 | moc_minesweep.cpp: minesweep.h |
132 | $(MOC) minesweep.h -o moc_minesweep.cpp | 132 | $(MOC) minesweep.h -o moc_minesweep.cpp |
diff --git a/noncore/games/minesweep/minesweep.pro b/noncore/games/minesweep/minesweep.pro index 87484bc..85f626a 100644 --- a/noncore/games/minesweep/minesweep.pro +++ b/noncore/games/minesweep/minesweep.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = minefield.h \ | 4 | HEADERS = minefield.h \ |
5 | minesweep.h | 5 | minesweep.h |
6 | SOURCES = main.cpp \ | 6 | SOURCES = main.cpp \ |
7 | minefield.cpp \ | 7 | minefield.cpp \ |
8 | minesweep.cpp | 8 | minesweep.cpp |
9 | INCLUDEPATH += $(QPEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH+= $(QPEDIR)/include | 10 | DEPENDPATH+= $(OPIEDIR)/include |
11 | LIBS += -lqpe | 11 | LIBS += -lqpe |
12 | INTERFACES= | 12 | INTERFACES= |
13 | 13 | ||
14 | TRANSLATIONS = ../i18n/de/minesweep.ts | 14 | TRANSLATIONS = ../i18n/de/minesweep.ts |
diff --git a/noncore/games/parashoot/Makefile.in b/noncore/games/parashoot/Makefile.in index ff7397e..254bcd2 100644 --- a/noncore/games/parashoot/Makefile.in +++ b/noncore/games/parashoot/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= parashoot | 21 | TARGET= parashoot |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =interface.h \ | 26 | HEADERS =interface.h \ |
27 | man.h \ | 27 | man.h \ |
28 | cannon.h \ | 28 | cannon.h \ |
29 | base.h \ | 29 | base.h \ |
@@ -112,92 +112,92 @@ REQUIRES= | |||
112 | 112 | ||
113 | 113 | ||
114 | ###### Combined headers | 114 | ###### Combined headers |
115 | 115 | ||
116 | 116 | ||
117 | 117 | ||
118 | ####### Compile | 118 | ####### Compile |
119 | 119 | ||
120 | main.o: main.cpp \ | 120 | main.o: main.cpp \ |
121 | interface.h \ | 121 | interface.h \ |
122 | cannon.h \ | 122 | cannon.h \ |
123 | bullet.h \ | 123 | bullet.h \ |
124 | $(QPEDIR)/include/qpe/sound.h \ | 124 | $(OPIEDIR)/include/qpe/sound.h \ |
125 | base.h \ | 125 | base.h \ |
126 | helicopter.h \ | 126 | helicopter.h \ |
127 | $(QPEDIR)/include/qpe/qpeapplication.h | 127 | $(OPIEDIR)/include/qpe/qpeapplication.h |
128 | 128 | ||
129 | interface.o: interface.cpp \ | 129 | interface.o: interface.cpp \ |
130 | interface.h \ | 130 | interface.h \ |
131 | cannon.h \ | 131 | cannon.h \ |
132 | bullet.h \ | 132 | bullet.h \ |
133 | $(QPEDIR)/include/qpe/sound.h \ | 133 | $(OPIEDIR)/include/qpe/sound.h \ |
134 | base.h \ | 134 | base.h \ |
135 | helicopter.h \ | 135 | helicopter.h \ |
136 | man.h \ | 136 | man.h \ |
137 | $(QPEDIR)/include/qpe/resource.h \ | 137 | $(OPIEDIR)/include/qpe/resource.h \ |
138 | $(QPEDIR)/include/qpe/qpetoolbar.h | 138 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
139 | 139 | ||
140 | man.o: man.cpp \ | 140 | man.o: man.cpp \ |
141 | codes.h \ | 141 | codes.h \ |
142 | man.h \ | 142 | man.h \ |
143 | $(QPEDIR)/include/qpe/sound.h \ | 143 | $(OPIEDIR)/include/qpe/sound.h \ |
144 | base.h \ | 144 | base.h \ |
145 | $(QPEDIR)/include/qpe/resource.h | 145 | $(OPIEDIR)/include/qpe/resource.h |
146 | 146 | ||
147 | cannon.o: cannon.cpp \ | 147 | cannon.o: cannon.cpp \ |
148 | $(QPEDIR)/include/qpe/resource.h \ | 148 | $(OPIEDIR)/include/qpe/resource.h \ |
149 | codes.h \ | 149 | codes.h \ |
150 | cannon.h \ | 150 | cannon.h \ |
151 | bullet.h \ | 151 | bullet.h \ |
152 | $(QPEDIR)/include/qpe/sound.h | 152 | $(OPIEDIR)/include/qpe/sound.h |
153 | 153 | ||
154 | base.o: base.cpp \ | 154 | base.o: base.cpp \ |
155 | codes.h \ | 155 | codes.h \ |
156 | base.h \ | 156 | base.h \ |
157 | $(QPEDIR)/include/qpe/sound.h \ | 157 | $(OPIEDIR)/include/qpe/sound.h \ |
158 | man.h \ | 158 | man.h \ |
159 | $(QPEDIR)/include/qpe/resource.h | 159 | $(OPIEDIR)/include/qpe/resource.h |
160 | 160 | ||
161 | bullet.o: bullet.cpp \ | 161 | bullet.o: bullet.cpp \ |
162 | codes.h \ | 162 | codes.h \ |
163 | bullet.h \ | 163 | bullet.h \ |
164 | $(QPEDIR)/include/qpe/sound.h \ | 164 | $(OPIEDIR)/include/qpe/sound.h \ |
165 | man.h \ | 165 | man.h \ |
166 | helicopter.h \ | 166 | helicopter.h \ |
167 | $(QPEDIR)/include/qpe/resource.h \ | 167 | $(OPIEDIR)/include/qpe/resource.h \ |
168 | $(QPEDIR)/include/qpe/qmath.h | 168 | $(OPIEDIR)/include/qpe/qmath.h |
169 | 169 | ||
170 | helicopter.o: helicopter.cpp \ | 170 | helicopter.o: helicopter.cpp \ |
171 | helicopter.h \ | 171 | helicopter.h \ |
172 | $(QPEDIR)/include/qpe/sound.h \ | 172 | $(OPIEDIR)/include/qpe/sound.h \ |
173 | man.h \ | 173 | man.h \ |
174 | codes.h \ | 174 | codes.h \ |
175 | $(QPEDIR)/include/qpe/resource.h | 175 | $(OPIEDIR)/include/qpe/resource.h |
176 | 176 | ||
177 | moc_interface.o: moc_interface.cpp \ | 177 | moc_interface.o: moc_interface.cpp \ |
178 | interface.h \ | 178 | interface.h \ |
179 | cannon.h \ | 179 | cannon.h \ |
180 | bullet.h \ | 180 | bullet.h \ |
181 | $(QPEDIR)/include/qpe/sound.h \ | 181 | $(OPIEDIR)/include/qpe/sound.h \ |
182 | base.h \ | 182 | base.h \ |
183 | helicopter.h | 183 | helicopter.h |
184 | 184 | ||
185 | moc_cannon.o: moc_cannon.cpp \ | 185 | moc_cannon.o: moc_cannon.cpp \ |
186 | cannon.h \ | 186 | cannon.h \ |
187 | bullet.h \ | 187 | bullet.h \ |
188 | $(QPEDIR)/include/qpe/sound.h | 188 | $(OPIEDIR)/include/qpe/sound.h |
189 | 189 | ||
190 | moc_bullet.o: moc_bullet.cpp \ | 190 | moc_bullet.o: moc_bullet.cpp \ |
191 | bullet.h \ | 191 | bullet.h \ |
192 | $(QPEDIR)/include/qpe/sound.h | 192 | $(OPIEDIR)/include/qpe/sound.h |
193 | 193 | ||
194 | moc_interface.cpp: interface.h | 194 | moc_interface.cpp: interface.h |
195 | $(MOC) interface.h -o moc_interface.cpp | 195 | $(MOC) interface.h -o moc_interface.cpp |
196 | 196 | ||
197 | moc_cannon.cpp: cannon.h | 197 | moc_cannon.cpp: cannon.h |
198 | $(MOC) cannon.h -o moc_cannon.cpp | 198 | $(MOC) cannon.h -o moc_cannon.cpp |
199 | 199 | ||
200 | moc_bullet.cpp: bullet.h | 200 | moc_bullet.cpp: bullet.h |
201 | $(MOC) bullet.h -o moc_bullet.cpp | 201 | $(MOC) bullet.h -o moc_bullet.cpp |
202 | 202 | ||
203 | 203 | ||
diff --git a/noncore/games/parashoot/parashoot.pro b/noncore/games/parashoot/parashoot.pro index 631560b..a7a01b2 100644 --- a/noncore/games/parashoot/parashoot.pro +++ b/noncore/games/parashoot/parashoot.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = interface.h man.h cannon.h base.h bullet.h helicopter.h | 4 | HEADERS = interface.h man.h cannon.h base.h bullet.h helicopter.h |
5 | SOURCES = main.cpp interface.cpp man.cpp cannon.cpp base.cpp bullet.cpp helicopter.cpp | 5 | SOURCES = main.cpp interface.cpp man.cpp cannon.cpp base.cpp bullet.cpp helicopter.cpp |
6 | TARGET = parashoot | 6 | TARGET = parashoot |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(QPEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | 10 | ||
11 | TRANSLATIONS = ../i18n/de/parashoot.ts | 11 | TRANSLATIONS = ../i18n/de/parashoot.ts |
diff --git a/noncore/games/qasteroids/Makefile.in b/noncore/games/qasteroids/Makefile.in index 7312743..0dbd9bc 100644 --- a/noncore/games/qasteroids/Makefile.in +++ b/noncore/games/qasteroids/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= qasteroids | 21 | TARGET= qasteroids |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =ledmeter.h \ | 26 | HEADERS =ledmeter.h \ |
27 | sprites.h \ | 27 | sprites.h \ |
28 | toplevel.h \ | 28 | toplevel.h \ |
29 | view.h | 29 | view.h |
@@ -108,37 +108,37 @@ REQUIRES= | |||
108 | 108 | ||
109 | 109 | ||
110 | ####### Compile | 110 | ####### Compile |
111 | 111 | ||
112 | ledmeter.o: ledmeter.cpp \ | 112 | ledmeter.o: ledmeter.cpp \ |
113 | ledmeter.h | 113 | ledmeter.h |
114 | 114 | ||
115 | toplevel.o: toplevel.cpp \ | 115 | toplevel.o: toplevel.cpp \ |
116 | toplevel.h \ | 116 | toplevel.h \ |
117 | view.h \ | 117 | view.h \ |
118 | sprites.h \ | 118 | sprites.h \ |
119 | ledmeter.h \ | 119 | ledmeter.h \ |
120 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 120 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
121 | $(QPEDIR)/include/qpe/resource.h | 121 | $(OPIEDIR)/include/qpe/resource.h |
122 | 122 | ||
123 | view.o: view.cpp \ | 123 | view.o: view.cpp \ |
124 | view.h \ | 124 | view.h \ |
125 | sprites.h \ | 125 | sprites.h \ |
126 | $(QPEDIR)/include/qpe/resource.h | 126 | $(OPIEDIR)/include/qpe/resource.h |
127 | 127 | ||
128 | main.o: main.cpp \ | 128 | main.o: main.cpp \ |
129 | toplevel.h \ | 129 | toplevel.h \ |
130 | view.h \ | 130 | view.h \ |
131 | sprites.h \ | 131 | sprites.h \ |
132 | $(QPEDIR)/include/qpe/qpeapplication.h | 132 | $(OPIEDIR)/include/qpe/qpeapplication.h |
133 | 133 | ||
134 | moc_ledmeter.o: moc_ledmeter.cpp \ | 134 | moc_ledmeter.o: moc_ledmeter.cpp \ |
135 | ledmeter.h | 135 | ledmeter.h |
136 | 136 | ||
137 | moc_toplevel.o: moc_toplevel.cpp \ | 137 | moc_toplevel.o: moc_toplevel.cpp \ |
138 | toplevel.h \ | 138 | toplevel.h \ |
139 | view.h \ | 139 | view.h \ |
140 | sprites.h | 140 | sprites.h |
141 | 141 | ||
142 | moc_view.o: moc_view.cpp \ | 142 | moc_view.o: moc_view.cpp \ |
143 | view.h \ | 143 | view.h \ |
144 | sprites.h | 144 | sprites.h |
diff --git a/noncore/games/qasteroids/qasteroids.pro b/noncore/games/qasteroids/qasteroids.pro index 14a0901..2f5b2e4 100644 --- a/noncore/games/qasteroids/qasteroids.pro +++ b/noncore/games/qasteroids/qasteroids.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = ledmeter.h sprites.h toplevel.h view.h | 4 | HEADERS = ledmeter.h sprites.h toplevel.h view.h |
5 | SOURCES = ledmeter.cpp toplevel.cpp view.cpp main.cpp | 5 | SOURCES = ledmeter.cpp toplevel.cpp view.cpp main.cpp |
6 | TARGET = qasteroids | 6 | TARGET = qasteroids |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(QPEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | 10 | ||
11 | TRANSLATIONS = ../i18n/de/qasteroids.ts | 11 | TRANSLATIONS = ../i18n/de/qasteroids.ts |
diff --git a/noncore/games/snake/Makefile.in b/noncore/games/snake/Makefile.in index 8179b6f..0801db3 100644 --- a/noncore/games/snake/Makefile.in +++ b/noncore/games/snake/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= snake | 21 | TARGET= snake |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =snake.h \ | 26 | HEADERS =snake.h \ |
27 | target.h \ | 27 | target.h \ |
28 | obstacle.h \ | 28 | obstacle.h \ |
29 | interface.h \ | 29 | interface.h \ |
@@ -105,50 +105,50 @@ REQUIRES= | |||
105 | 105 | ||
106 | 106 | ||
107 | ###### Combined headers | 107 | ###### Combined headers |
108 | 108 | ||
109 | 109 | ||
110 | 110 | ||
111 | ####### Compile | 111 | ####### Compile |
112 | 112 | ||
113 | snake.o: snake.cpp \ | 113 | snake.o: snake.cpp \ |
114 | snake.h \ | 114 | snake.h \ |
115 | target.h \ | 115 | target.h \ |
116 | codes.h \ | 116 | codes.h \ |
117 | $(QPEDIR)/include/qpe/resource.h | 117 | $(OPIEDIR)/include/qpe/resource.h |
118 | 118 | ||
119 | target.o: target.cpp \ | 119 | target.o: target.cpp \ |
120 | target.h \ | 120 | target.h \ |
121 | codes.h \ | 121 | codes.h \ |
122 | $(QPEDIR)/include/qpe/resource.h | 122 | $(OPIEDIR)/include/qpe/resource.h |
123 | 123 | ||
124 | obstacle.o: obstacle.cpp \ | 124 | obstacle.o: obstacle.cpp \ |
125 | obstacle.h \ | 125 | obstacle.h \ |
126 | codes.h \ | 126 | codes.h \ |
127 | $(QPEDIR)/include/qpe/resource.h | 127 | $(OPIEDIR)/include/qpe/resource.h |
128 | 128 | ||
129 | interface.o: interface.cpp \ | 129 | interface.o: interface.cpp \ |
130 | interface.h \ | 130 | interface.h \ |
131 | snake.h \ | 131 | snake.h \ |
132 | target.h \ | 132 | target.h \ |
133 | obstacle.h \ | 133 | obstacle.h \ |
134 | $(QPEDIR)/include/qpe/resource.h \ | 134 | $(OPIEDIR)/include/qpe/resource.h \ |
135 | $(QPEDIR)/include/qpe/qpetoolbar.h | 135 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
136 | 136 | ||
137 | main.o: main.cpp \ | 137 | main.o: main.cpp \ |
138 | interface.h \ | 138 | interface.h \ |
139 | snake.h \ | 139 | snake.h \ |
140 | target.h \ | 140 | target.h \ |
141 | obstacle.h \ | 141 | obstacle.h \ |
142 | $(QPEDIR)/include/qpe/qpeapplication.h | 142 | $(OPIEDIR)/include/qpe/qpeapplication.h |
143 | 143 | ||
144 | moc_snake.o: moc_snake.cpp \ | 144 | moc_snake.o: moc_snake.cpp \ |
145 | snake.h | 145 | snake.h |
146 | 146 | ||
147 | moc_interface.o: moc_interface.cpp \ | 147 | moc_interface.o: moc_interface.cpp \ |
148 | interface.h \ | 148 | interface.h \ |
149 | snake.h \ | 149 | snake.h \ |
150 | target.h \ | 150 | target.h \ |
151 | obstacle.h | 151 | obstacle.h |
152 | 152 | ||
153 | moc_snake.cpp: snake.h | 153 | moc_snake.cpp: snake.h |
154 | $(MOC) snake.h -o moc_snake.cpp | 154 | $(MOC) snake.h -o moc_snake.cpp |
diff --git a/noncore/games/snake/snake.pro b/noncore/games/snake/snake.pro index 6dacdbd..38b4023 100644 --- a/noncore/games/snake/snake.pro +++ b/noncore/games/snake/snake.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = snake.h target.h obstacle.h interface.h codes.h | 4 | HEADERS = snake.h target.h obstacle.h interface.h codes.h |
5 | SOURCES = snake.cpp target.cpp obstacle.cpp interface.cpp main.cpp | 5 | SOURCES = snake.cpp target.cpp obstacle.cpp interface.cpp main.cpp |
6 | TARGET = snake | 6 | TARGET = snake |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(QPEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | 10 | ||
11 | TRANSLATIONS = ../i18n/de/snake.ts | 11 | TRANSLATIONS = ../i18n/de/snake.ts |
diff --git a/noncore/games/solitaire/Makefile.in b/noncore/games/solitaire/Makefile.in index 3c50345..a0a64fb 100644 --- a/noncore/games/solitaire/Makefile.in +++ b/noncore/games/solitaire/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= patience | 21 | TARGET= patience |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =canvascard.h \ | 26 | HEADERS =canvascard.h \ |
27 | canvasshapes.h \ | 27 | canvasshapes.h \ |
28 | cardgame.h \ | 28 | cardgame.h \ |
29 | cardgamelayout.h \ | 29 | cardgamelayout.h \ |
@@ -126,110 +126,110 @@ REQUIRES=patience | |||
126 | 126 | ||
127 | 127 | ||
128 | 128 | ||
129 | ####### Compile | 129 | ####### Compile |
130 | 130 | ||
131 | canvascard.o: canvascard.cpp \ | 131 | canvascard.o: canvascard.cpp \ |
132 | cardgame.h \ | 132 | cardgame.h \ |
133 | card.h \ | 133 | card.h \ |
134 | cardpile.h \ | 134 | cardpile.h \ |
135 | carddeck.h \ | 135 | carddeck.h \ |
136 | cardgamelayout.h \ | 136 | cardgamelayout.h \ |
137 | canvascard.h \ | 137 | canvascard.h \ |
138 | $(QPEDIR)/include/qpe/resource.h | 138 | $(OPIEDIR)/include/qpe/resource.h |
139 | 139 | ||
140 | canvasshapes.o: canvasshapes.cpp \ | 140 | canvasshapes.o: canvasshapes.cpp \ |
141 | canvasshapes.h | 141 | canvasshapes.h |
142 | 142 | ||
143 | cardgame.o: cardgame.cpp \ | 143 | cardgame.o: cardgame.cpp \ |
144 | cardgame.h \ | 144 | cardgame.h \ |
145 | card.h \ | 145 | card.h \ |
146 | cardpile.h \ | 146 | cardpile.h \ |
147 | carddeck.h \ | 147 | carddeck.h \ |
148 | cardgamelayout.h | 148 | cardgamelayout.h |
149 | 149 | ||
150 | cardgamelayout.o: cardgamelayout.cpp \ | 150 | cardgamelayout.o: cardgamelayout.cpp \ |
151 | cardgamelayout.h \ | 151 | cardgamelayout.h \ |
152 | cardpile.h | 152 | cardpile.h |
153 | 153 | ||
154 | cardpile.o: cardpile.cpp \ | 154 | cardpile.o: cardpile.cpp \ |
155 | cardpile.h \ | 155 | cardpile.h \ |
156 | card.h \ | 156 | card.h \ |
157 | $(QPEDIR)/include/qpe/config.h | 157 | $(OPIEDIR)/include/qpe/config.h |
158 | 158 | ||
159 | card.o: card.cpp \ | 159 | card.o: card.cpp \ |
160 | card.h \ | 160 | card.h \ |
161 | $(QPEDIR)/include/qpe/config.h | 161 | $(OPIEDIR)/include/qpe/config.h |
162 | 162 | ||
163 | carddeck.o: carddeck.cpp \ | 163 | carddeck.o: carddeck.cpp \ |
164 | card.h \ | 164 | card.h \ |
165 | carddeck.h | 165 | carddeck.h |
166 | 166 | ||
167 | canvascardgame.o: canvascardgame.cpp \ | 167 | canvascardgame.o: canvascardgame.cpp \ |
168 | cardgame.h \ | 168 | cardgame.h \ |
169 | card.h \ | 169 | card.h \ |
170 | cardpile.h \ | 170 | cardpile.h \ |
171 | carddeck.h \ | 171 | carddeck.h \ |
172 | cardgamelayout.h \ | 172 | cardgamelayout.h \ |
173 | canvasshapes.h \ | 173 | canvasshapes.h \ |
174 | canvascard.h \ | 174 | canvascard.h \ |
175 | canvascardgame.h \ | 175 | canvascardgame.h \ |
176 | $(QPEDIR)/include/qpe/resource.h \ | 176 | $(OPIEDIR)/include/qpe/resource.h \ |
177 | $(QPEDIR)/include/qpe/config.h \ | 177 | $(OPIEDIR)/include/qpe/config.h \ |
178 | $(QPEDIR)/include/qpe/qpemenubar.h | 178 | $(OPIEDIR)/include/qpe/qpemenubar.h |
179 | 179 | ||
180 | freecellcardgame.o: freecellcardgame.cpp \ | 180 | freecellcardgame.o: freecellcardgame.cpp \ |
181 | freecellcardgame.h \ | 181 | freecellcardgame.h \ |
182 | patiencecardgame.h \ | 182 | patiencecardgame.h \ |
183 | canvascardgame.h \ | 183 | canvascardgame.h \ |
184 | cardgame.h \ | 184 | cardgame.h \ |
185 | card.h \ | 185 | card.h \ |
186 | cardpile.h \ | 186 | cardpile.h \ |
187 | carddeck.h \ | 187 | carddeck.h \ |
188 | cardgamelayout.h \ | 188 | cardgamelayout.h \ |
189 | canvasshapes.h \ | 189 | canvasshapes.h \ |
190 | canvascard.h \ | 190 | canvascard.h \ |
191 | $(QPEDIR)/include/qpe/resource.h \ | 191 | $(OPIEDIR)/include/qpe/resource.h \ |
192 | $(QPEDIR)/include/qpe/config.h \ | 192 | $(OPIEDIR)/include/qpe/config.h \ |
193 | $(QPEDIR)/include/qpe/qpemenubar.h | 193 | $(OPIEDIR)/include/qpe/qpemenubar.h |
194 | 194 | ||
195 | patiencecardgame.o: patiencecardgame.cpp \ | 195 | patiencecardgame.o: patiencecardgame.cpp \ |
196 | patiencecardgame.h \ | 196 | patiencecardgame.h \ |
197 | canvascardgame.h \ | 197 | canvascardgame.h \ |
198 | cardgame.h \ | 198 | cardgame.h \ |
199 | card.h \ | 199 | card.h \ |
200 | cardpile.h \ | 200 | cardpile.h \ |
201 | carddeck.h \ | 201 | carddeck.h \ |
202 | cardgamelayout.h \ | 202 | cardgamelayout.h \ |
203 | canvasshapes.h \ | 203 | canvasshapes.h \ |
204 | canvascard.h \ | 204 | canvascard.h \ |
205 | $(QPEDIR)/include/qpe/resource.h \ | 205 | $(OPIEDIR)/include/qpe/resource.h \ |
206 | $(QPEDIR)/include/qpe/config.h \ | 206 | $(OPIEDIR)/include/qpe/config.h \ |
207 | $(QPEDIR)/include/qpe/qpemenubar.h | 207 | $(OPIEDIR)/include/qpe/qpemenubar.h |
208 | 208 | ||
209 | canvascardwindow.o: canvascardwindow.cpp \ | 209 | canvascardwindow.o: canvascardwindow.cpp \ |
210 | canvascardwindow.h \ | 210 | canvascardwindow.h \ |
211 | patiencecardgame.h \ | 211 | patiencecardgame.h \ |
212 | canvascardgame.h \ | 212 | canvascardgame.h \ |
213 | cardgame.h \ | 213 | cardgame.h \ |
214 | card.h \ | 214 | card.h \ |
215 | cardpile.h \ | 215 | cardpile.h \ |
216 | carddeck.h \ | 216 | carddeck.h \ |
217 | cardgamelayout.h \ | 217 | cardgamelayout.h \ |
218 | canvasshapes.h \ | 218 | canvasshapes.h \ |
219 | canvascard.h \ | 219 | canvascard.h \ |
220 | $(QPEDIR)/include/qpe/resource.h \ | 220 | $(OPIEDIR)/include/qpe/resource.h \ |
221 | $(QPEDIR)/include/qpe/config.h \ | 221 | $(OPIEDIR)/include/qpe/config.h \ |
222 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 222 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
223 | freecellcardgame.h | 223 | freecellcardgame.h |
224 | 224 | ||
225 | main.o: main.cpp \ | 225 | main.o: main.cpp \ |
226 | canvascardwindow.h \ | 226 | canvascardwindow.h \ |
227 | $(QPEDIR)/include/qpe/qpeapplication.h | 227 | $(OPIEDIR)/include/qpe/qpeapplication.h |
228 | 228 | ||
229 | moc_canvascardwindow.o: moc_canvascardwindow.cpp \ | 229 | moc_canvascardwindow.o: moc_canvascardwindow.cpp \ |
230 | canvascardwindow.h | 230 | canvascardwindow.h |
231 | 231 | ||
232 | moc_canvascardwindow.cpp: canvascardwindow.h | 232 | moc_canvascardwindow.cpp: canvascardwindow.h |
233 | $(MOC) canvascardwindow.h -o moc_canvascardwindow.cpp | 233 | $(MOC) canvascardwindow.h -o moc_canvascardwindow.cpp |
234 | 234 | ||
235 | 235 | ||
diff --git a/noncore/games/solitaire/solitaire.pro b/noncore/games/solitaire/solitaire.pro index 8617cab..1c90c94 100755 --- a/noncore/games/solitaire/solitaire.pro +++ b/noncore/games/solitaire/solitaire.pro | |||
@@ -1,18 +1,18 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | 2 | ||
3 | CONFIG += qt warn_on release | 3 | CONFIG += qt warn_on release |
4 | DESTDIR = $(QPEDIR)/bin | 4 | DESTDIR = $(OPIEDIR)/bin |
5 | 5 | ||
6 | HEADERS = canvascard.h canvasshapes.h cardgame.h cardgamelayout.h cardpile.h card.h carddeck.h canvascardgame.h freecellcardgame.h patiencecardgame.h canvascardwindow.h | 6 | HEADERS = canvascard.h canvasshapes.h cardgame.h cardgamelayout.h cardpile.h card.h carddeck.h canvascardgame.h freecellcardgame.h patiencecardgame.h canvascardwindow.h |
7 | 7 | ||
8 | SOURCES = canvascard.cpp canvasshapes.cpp cardgame.cpp cardgamelayout.cpp cardpile.cpp card.cpp carddeck.cpp canvascardgame.cpp freecellcardgame.cpp patiencecardgame.cpp canvascardwindow.cpp main.cpp | 8 | SOURCES = canvascard.cpp canvasshapes.cpp cardgame.cpp cardgamelayout.cpp cardpile.cpp card.cpp carddeck.cpp canvascardgame.cpp freecellcardgame.cpp patiencecardgame.cpp canvascardwindow.cpp main.cpp |
9 | 9 | ||
10 | TARGET = patience | 10 | TARGET = patience |
11 | 11 | ||
12 | INCLUDEPATH += $(QPEDIR)/include | 12 | INCLUDEPATH += $(OPIEDIR)/include |
13 | DEPENDPATH+= $(QPEDIR)/include | 13 | DEPENDPATH+= $(OPIEDIR)/include |
14 | LIBS += -lqpe | 14 | LIBS += -lqpe |
15 | 15 | ||
16 | REQUIRES= patience | 16 | REQUIRES= patience |
17 | 17 | ||
18 | TRANSLATIONS = ../i18n/de/patience.ts | 18 | TRANSLATIONS = ../i18n/de/patience.ts |
diff --git a/noncore/games/tetrix/Makefile.in b/noncore/games/tetrix/Makefile.in index 3a74fdc..59e172c 100644 --- a/noncore/games/tetrix/Makefile.in +++ b/noncore/games/tetrix/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../bin/ | 17 | DESTDIR = ../bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= tetrix | 21 | TARGET= tetrix |
@@ -106,36 +106,36 @@ REQUIRES= | |||
106 | 106 | ||
107 | ###### Combined headers | 107 | ###### Combined headers |
108 | 108 | ||
109 | 109 | ||
110 | 110 | ||
111 | ####### Compile | 111 | ####### Compile |
112 | 112 | ||
113 | main.o: main.cpp \ | 113 | main.o: main.cpp \ |
114 | qtetrix.h \ | 114 | qtetrix.h \ |
115 | qtetrixb.h \ | 115 | qtetrixb.h \ |
116 | gtetrix.h \ | 116 | gtetrix.h \ |
117 | tpiece.h \ | 117 | tpiece.h \ |
118 | $(QPEDIR)/include/qpe/qpeapplication.h | 118 | $(OPIEDIR)/include/qpe/qpeapplication.h |
119 | 119 | ||
120 | gtetrix.o: gtetrix.cpp \ | 120 | gtetrix.o: gtetrix.cpp \ |
121 | gtetrix.h \ | 121 | gtetrix.h \ |
122 | tpiece.h | 122 | tpiece.h |
123 | 123 | ||
124 | qtetrix.o: qtetrix.cpp \ | 124 | qtetrix.o: qtetrix.cpp \ |
125 | qtetrix.h \ | 125 | qtetrix.h \ |
126 | qtetrixb.h \ | 126 | qtetrixb.h \ |
127 | gtetrix.h \ | 127 | gtetrix.h \ |
128 | tpiece.h \ | 128 | tpiece.h \ |
129 | $(QPEDIR)/include/qpe/resource.h | 129 | $(OPIEDIR)/include/qpe/resource.h |
130 | 130 | ||
131 | qtetrixb.o: qtetrixb.cpp \ | 131 | qtetrixb.o: qtetrixb.cpp \ |
132 | qtetrixb.h \ | 132 | qtetrixb.h \ |
133 | gtetrix.h \ | 133 | gtetrix.h \ |
134 | tpiece.h \ | 134 | tpiece.h \ |
135 | qtetrix.h | 135 | qtetrix.h |
136 | 136 | ||
137 | tpiece.o: tpiece.cpp \ | 137 | tpiece.o: tpiece.cpp \ |
138 | tpiece.h | 138 | tpiece.h |
139 | 139 | ||
140 | moc_qtetrix.o: moc_qtetrix.cpp \ | 140 | moc_qtetrix.o: moc_qtetrix.cpp \ |
141 | qtetrix.h \ | 141 | qtetrix.h \ |
diff --git a/noncore/games/tetrix/tetrix.pro b/noncore/games/tetrix/tetrix.pro index 1160585..533fab0 100644 --- a/noncore/games/tetrix/tetrix.pro +++ b/noncore/games/tetrix/tetrix.pro | |||
@@ -2,16 +2,16 @@ TEMPLATE = app | |||
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = ../bin | 3 | DESTDIR = ../bin |
4 | HEADERS = minefield.h \ | 4 | HEADERS = minefield.h \ |
5 | gtetrix.h \ | 5 | gtetrix.h \ |
6 | qtetrix.h \ | 6 | qtetrix.h \ |
7 | qtetrixb.h \ | 7 | qtetrixb.h \ |
8 | tpiece.h | 8 | tpiece.h |
9 | SOURCES = main.cpp \ | 9 | SOURCES = main.cpp \ |
10 | gtetrix.cpp \ | 10 | gtetrix.cpp \ |
11 | qtetrix.cpp \ | 11 | qtetrix.cpp \ |
12 | qtetrixb.cpp \ | 12 | qtetrixb.cpp \ |
13 | tpiece.cpp | 13 | tpiece.cpp |
14 | INCLUDEPATH += $(QPEDIR)/include | 14 | INCLUDEPATH += $(OPIEDIR)/include |
15 | DEPENDPATH+= $(QPEDIR)/include | 15 | DEPENDPATH+= $(OPIEDIR)/include |
16 | LIBS += -lqpe | 16 | LIBS += -lqpe |
17 | INTERFACES= | 17 | INTERFACES= |
diff --git a/noncore/games/wordgame/Makefile.in b/noncore/games/wordgame/Makefile.in index 5627414..2e0a47c 100644 --- a/noncore/games/wordgame/Makefile.in +++ b/noncore/games/wordgame/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= wordgame | 21 | TARGET= wordgame |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =wordgame.h | 26 | HEADERS =wordgame.h |
27 | SOURCES =main.cpp \ | 27 | SOURCES =main.cpp \ |
28 | wordgame.cpp | 28 | wordgame.cpp |
29 | OBJECTS =main.o \ | 29 | OBJECTS =main.o \ |
@@ -102,62 +102,62 @@ REQUIRES= | |||
102 | 102 | ||
103 | 103 | ||
104 | ###### Combined headers | 104 | ###### Combined headers |
105 | 105 | ||
106 | 106 | ||
107 | 107 | ||
108 | ####### Compile | 108 | ####### Compile |
109 | 109 | ||
110 | main.o: main.cpp \ | 110 | main.o: main.cpp \ |
111 | wordgame.h \ | 111 | wordgame.h \ |
112 | newgamebase.h \ | 112 | newgamebase.h \ |
113 | rulesbase.h \ | 113 | rulesbase.h \ |
114 | $(QPEDIR)/include/qpe/qdawg.h \ | 114 | $(OPIEDIR)/include/qpe/qdawg.h \ |
115 | $(QPEDIR)/include/qpe/applnk.h \ | 115 | $(OPIEDIR)/include/qpe/applnk.h \ |
116 | $(QPEDIR)/include/qpe/qpeapplication.h | 116 | $(OPIEDIR)/include/qpe/qpeapplication.h |
117 | 117 | ||
118 | wordgame.o: wordgame.cpp \ | 118 | wordgame.o: wordgame.cpp \ |
119 | wordgame.h \ | 119 | wordgame.h \ |
120 | newgamebase.h \ | 120 | newgamebase.h \ |
121 | rulesbase.h \ | 121 | rulesbase.h \ |
122 | $(QPEDIR)/include/qpe/qdawg.h \ | 122 | $(OPIEDIR)/include/qpe/qdawg.h \ |
123 | $(QPEDIR)/include/qpe/applnk.h \ | 123 | $(OPIEDIR)/include/qpe/applnk.h \ |
124 | $(QPEDIR)/include/qpe/global.h \ | 124 | $(OPIEDIR)/include/qpe/global.h \ |
125 | $(QPEDIR)/include/qpe/filemanager.h \ | 125 | $(OPIEDIR)/include/qpe/filemanager.h \ |
126 | $(QPEDIR)/include/qpe/resource.h \ | 126 | $(OPIEDIR)/include/qpe/resource.h \ |
127 | $(QPEDIR)/include/qpe/config.h \ | 127 | $(OPIEDIR)/include/qpe/config.h \ |
128 | $(QPEDIR)/include/qpe/qpetoolbar.h | 128 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
129 | 129 | ||
130 | newgamebase.h: newgamebase.ui | 130 | newgamebase.h: newgamebase.ui |
131 | $(UIC) newgamebase.ui -o $(INTERFACE_DECL_PATH)/newgamebase.h | 131 | $(UIC) newgamebase.ui -o $(INTERFACE_DECL_PATH)/newgamebase.h |
132 | 132 | ||
133 | newgamebase.cpp: newgamebase.ui | 133 | newgamebase.cpp: newgamebase.ui |
134 | $(UIC) newgamebase.ui -i newgamebase.h -o newgamebase.cpp | 134 | $(UIC) newgamebase.ui -i newgamebase.h -o newgamebase.cpp |
135 | 135 | ||
136 | rulesbase.h: rulesbase.ui | 136 | rulesbase.h: rulesbase.ui |
137 | $(UIC) rulesbase.ui -o $(INTERFACE_DECL_PATH)/rulesbase.h | 137 | $(UIC) rulesbase.ui -o $(INTERFACE_DECL_PATH)/rulesbase.h |
138 | 138 | ||
139 | rulesbase.cpp: rulesbase.ui | 139 | rulesbase.cpp: rulesbase.ui |
140 | $(UIC) rulesbase.ui -i rulesbase.h -o rulesbase.cpp | 140 | $(UIC) rulesbase.ui -i rulesbase.h -o rulesbase.cpp |
141 | 141 | ||
142 | newgamebase.o: newgamebase.cpp | 142 | newgamebase.o: newgamebase.cpp |
143 | 143 | ||
144 | rulesbase.o: rulesbase.cpp | 144 | rulesbase.o: rulesbase.cpp |
145 | 145 | ||
146 | moc_wordgame.o: moc_wordgame.cpp \ | 146 | moc_wordgame.o: moc_wordgame.cpp \ |
147 | wordgame.h \ | 147 | wordgame.h \ |
148 | newgamebase.h \ | 148 | newgamebase.h \ |
149 | rulesbase.h \ | 149 | rulesbase.h \ |
150 | $(QPEDIR)/include/qpe/qdawg.h \ | 150 | $(OPIEDIR)/include/qpe/qdawg.h \ |
151 | $(QPEDIR)/include/qpe/applnk.h | 151 | $(OPIEDIR)/include/qpe/applnk.h |
152 | 152 | ||
153 | moc_newgamebase.o: moc_newgamebase.cpp \ | 153 | moc_newgamebase.o: moc_newgamebase.cpp \ |
154 | newgamebase.h | 154 | newgamebase.h |
155 | 155 | ||
156 | moc_rulesbase.o: moc_rulesbase.cpp \ | 156 | moc_rulesbase.o: moc_rulesbase.cpp \ |
157 | rulesbase.h | 157 | rulesbase.h |
158 | 158 | ||
159 | moc_wordgame.cpp: wordgame.h | 159 | moc_wordgame.cpp: wordgame.h |
160 | $(MOC) wordgame.h -o moc_wordgame.cpp | 160 | $(MOC) wordgame.h -o moc_wordgame.cpp |
161 | 161 | ||
162 | moc_newgamebase.cpp: newgamebase.h | 162 | moc_newgamebase.cpp: newgamebase.h |
163 | $(MOC) newgamebase.h -o moc_newgamebase.cpp | 163 | $(MOC) newgamebase.h -o moc_newgamebase.cpp |
diff --git a/noncore/games/wordgame/wordgame.pro b/noncore/games/wordgame/wordgame.pro index 7feacf9..64f4832 100644 --- a/noncore/games/wordgame/wordgame.pro +++ b/noncore/games/wordgame/wordgame.pro | |||
@@ -1,13 +1,13 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = wordgame.h | 4 | HEADERS = wordgame.h |
5 | SOURCES = main.cpp \ | 5 | SOURCES = main.cpp \ |
6 | wordgame.cpp | 6 | wordgame.cpp |
7 | INTERFACES= newgamebase.ui rulesbase.ui | 7 | INTERFACES= newgamebase.ui rulesbase.ui |
8 | TARGET = wordgame | 8 | TARGET = wordgame |
9 | INCLUDEPATH += $(QPEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH+= $(QPEDIR)/include | 10 | DEPENDPATH+= $(OPIEDIR)/include |
11 | LIBS += -lqpe | 11 | LIBS += -lqpe |
12 | 12 | ||
13 | TRANSLATIONS = ../i18n/de/wordgame.ts | 13 | TRANSLATIONS = ../i18n/de/wordgame.ts |
diff --git a/noncore/multimedia/showimg/Makefile.in b/noncore/multimedia/showimg/Makefile.in index 9255b2d..7c58da1 100644 --- a/noncore/multimedia/showimg/Makefile.in +++ b/noncore/multimedia/showimg/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= showimg | 21 | TARGET= showimg |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =showimg.h | 26 | HEADERS =showimg.h |
27 | SOURCES =main.cpp \ | 27 | SOURCES =main.cpp \ |
28 | showimg.cpp | 28 | showimg.cpp |
29 | OBJECTS =main.o \ | 29 | OBJECTS =main.o \ |
@@ -91,29 +91,29 @@ REQUIRES=showimg | |||
91 | 91 | ||
92 | ####### Sub-libraries | 92 | ####### Sub-libraries |
93 | 93 | ||
94 | 94 | ||
95 | ###### Combined headers | 95 | ###### Combined headers |
96 | 96 | ||
97 | 97 | ||
98 | 98 | ||
99 | ####### Compile | 99 | ####### Compile |
100 | 100 | ||
101 | main.o: main.cpp \ | 101 | main.o: main.cpp \ |
102 | showimg.h \ | 102 | showimg.h \ |
103 | $(QPEDIR)/include/qpe/qpeapplication.h | 103 | $(OPIEDIR)/include/qpe/qpeapplication.h |
104 | 104 | ||
105 | showimg.o: showimg.cpp \ | 105 | showimg.o: showimg.cpp \ |
106 | showimg.h \ | 106 | showimg.h \ |
107 | $(QPEDIR)/include/qpe/resource.h \ | 107 | $(OPIEDIR)/include/qpe/resource.h \ |
108 | $(QPEDIR)/include/qpe/fileselector.h \ | 108 | $(OPIEDIR)/include/qpe/fileselector.h \ |
109 | $(QPEDIR)/include/qpe/applnk.h \ | 109 | $(OPIEDIR)/include/qpe/applnk.h \ |
110 | $(QPEDIR)/include/qpe/qpemenubar.h \ | 110 | $(OPIEDIR)/include/qpe/qpemenubar.h \ |
111 | $(QPEDIR)/include/qpe/qpetoolbar.h | 111 | $(OPIEDIR)/include/qpe/qpetoolbar.h |
112 | 112 | ||
113 | moc_showimg.o: moc_showimg.cpp \ | 113 | moc_showimg.o: moc_showimg.cpp \ |
114 | showimg.h | 114 | showimg.h |
115 | 115 | ||
116 | moc_showimg.cpp: showimg.h | 116 | moc_showimg.cpp: showimg.h |
117 | $(MOC) showimg.h -o moc_showimg.cpp | 117 | $(MOC) showimg.h -o moc_showimg.cpp |
118 | 118 | ||
119 | 119 | ||
diff --git a/noncore/multimedia/showimg/showimg.pro b/noncore/multimedia/showimg/showimg.pro index a372f62..29da458 100644 --- a/noncore/multimedia/showimg/showimg.pro +++ b/noncore/multimedia/showimg/showimg.pro | |||
@@ -1,19 +1,19 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | 2 | ||
3 | CONFIG += qt warn_on release | 3 | CONFIG += qt warn_on release |
4 | DESTDIR = $(QPEDIR)/bin | 4 | DESTDIR = $(OPIEDIR)/bin |
5 | 5 | ||
6 | HEADERS = showimg.h | 6 | HEADERS = showimg.h |
7 | 7 | ||
8 | SOURCES = main.cpp \ | 8 | SOURCES = main.cpp \ |
9 | showimg.cpp | 9 | showimg.cpp |
10 | 10 | ||
11 | TARGET = showimg | 11 | TARGET = showimg |
12 | 12 | ||
13 | INCLUDEPATH += $(QPEDIR)/include | 13 | INCLUDEPATH += $(OPIEDIR)/include |
14 | DEPENDPATH += $(QPEDIR)/include | 14 | DEPENDPATH += $(OPIEDIR)/include |
15 | LIBS += -lqpe | 15 | LIBS += -lqpe |
16 | 16 | ||
17 | REQUIRES = showimg | 17 | REQUIRES = showimg |
18 | 18 | ||
19 | TRANSLATIONS = ../i18n/de/showimg.ts | 19 | TRANSLATIONS = ../i18n/de/showimg.ts |
diff --git a/noncore/settings/language/Makefile.in b/noncore/settings/language/Makefile.in index 2babf6e..d1a602d 100644 --- a/noncore/settings/language/Makefile.in +++ b/noncore/settings/language/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../bin/ | 17 | DESTDIR = ../../bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= language | 21 | TARGET= language |
diff --git a/noncore/settings/language/language.pro b/noncore/settings/language/language.pro index d1f1bf0..c01ffc8 100644 --- a/noncore/settings/language/language.pro +++ b/noncore/settings/language/language.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = ../../bin | 3 | DESTDIR = ../../bin |
4 | HEADERS = settings.h | 4 | HEADERS = settings.h |
5 | SOURCES = language.cpp main.cpp | 5 | SOURCES = language.cpp main.cpp |
6 | INTERFACES= languagesettingsbase.ui | 6 | INTERFACES= languagesettingsbase.ui |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= ../$(QPEDIR)/include | 8 | DEPENDPATH+= ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = language | 10 | TARGET = language |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/de/language.ts | 12 | TRANSLATIONS = ../../i18n/de/language.ts |
diff --git a/noncore/settings/sound/Makefile.in b/noncore/settings/sound/Makefile.in index 1772e12..b42f2e9 100644 --- a/noncore/settings/sound/Makefile.in +++ b/noncore/settings/sound/Makefile.in | |||
@@ -1,21 +1,21 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = ../../bin/ | 17 | DESTDIR = ../../bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= sound | 21 | TARGET= sound |
diff --git a/noncore/settings/sound/sound.pro b/noncore/settings/sound/sound.pro index 9028a44..44eff44 100644 --- a/noncore/settings/sound/sound.pro +++ b/noncore/settings/sound/sound.pro | |||
@@ -1,10 +1,10 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = ../../bin | 3 | DESTDIR = ../../bin |
4 | HEADERS = soundsettings.h | 4 | HEADERS = soundsettings.h |
5 | SOURCES = soundsettings.cpp main.cpp | 5 | SOURCES = soundsettings.cpp main.cpp |
6 | INTERFACES= soundsettingsbase.ui | 6 | INTERFACES= soundsettingsbase.ui |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= ../$(QPEDIR)/include | 8 | DEPENDPATH+= ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = sound | 10 | TARGET = sound |
diff --git a/noncore/settings/sysinfo/Makefile.in b/noncore/settings/sysinfo/Makefile.in index 1149304..fb9d15e 100644 --- a/noncore/settings/sysinfo/Makefile.in +++ b/noncore/settings/sysinfo/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= sysinfo | 21 | TARGET= sysinfo |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =memory.h \ | 26 | HEADERS =memory.h \ |
27 | graph.h \ | 27 | graph.h \ |
28 | load.h \ | 28 | load.h \ |
29 | storage.h \ | 29 | storage.h \ |
@@ -116,52 +116,52 @@ REQUIRES= | |||
116 | 116 | ||
117 | ####### Sub-libraries | 117 | ####### Sub-libraries |
118 | 118 | ||
119 | 119 | ||
120 | ###### Combined headers | 120 | ###### Combined headers |
121 | 121 | ||
122 | 122 | ||
123 | 123 | ||
124 | ####### Compile | 124 | ####### Compile |
125 | 125 | ||
126 | main.o: main.cpp \ | 126 | main.o: main.cpp \ |
127 | sysinfo.h \ | 127 | sysinfo.h \ |
128 | $(QPEDIR)/include/qpe/qpeapplication.h | 128 | $(OPIEDIR)/include/qpe/qpeapplication.h |
129 | 129 | ||
130 | memory.o: memory.cpp \ | 130 | memory.o: memory.cpp \ |
131 | graph.h \ | 131 | graph.h \ |
132 | memory.h | 132 | memory.h |
133 | 133 | ||
134 | graph.o: graph.cpp \ | 134 | graph.o: graph.cpp \ |
135 | graph.h | 135 | graph.h |
136 | 136 | ||
137 | load.o: load.cpp \ | 137 | load.o: load.cpp \ |
138 | load.h | 138 | load.h |
139 | 139 | ||
140 | storage.o: storage.cpp \ | 140 | storage.o: storage.cpp \ |
141 | graph.h \ | 141 | graph.h \ |
142 | storage.h | 142 | storage.h |
143 | 143 | ||
144 | versioninfo.o: versioninfo.cpp \ | 144 | versioninfo.o: versioninfo.cpp \ |
145 | $(QPEDIR)/include/qpe/resource.h \ | 145 | $(OPIEDIR)/include/qpe/resource.h \ |
146 | $(QPEDIR)/include/qpe/version.h \ | 146 | $(OPIEDIR)/include/qpe/version.h \ |
147 | versioninfo.h | 147 | versioninfo.h |
148 | 148 | ||
149 | sysinfo.o: sysinfo.cpp \ | 149 | sysinfo.o: sysinfo.cpp \ |
150 | memory.h \ | 150 | memory.h \ |
151 | load.h \ | 151 | load.h \ |
152 | storage.h \ | 152 | storage.h \ |
153 | versioninfo.h \ | 153 | versioninfo.h \ |
154 | sysinfo.h \ | 154 | sysinfo.h \ |
155 | $(QPEDIR)/include/qpe/resource.h | 155 | $(OPIEDIR)/include/qpe/resource.h |
156 | 156 | ||
157 | moc_memory.o: moc_memory.cpp \ | 157 | moc_memory.o: moc_memory.cpp \ |
158 | memory.h | 158 | memory.h |
159 | 159 | ||
160 | moc_graph.o: moc_graph.cpp \ | 160 | moc_graph.o: moc_graph.cpp \ |
161 | graph.h | 161 | graph.h |
162 | 162 | ||
163 | moc_load.o: moc_load.cpp \ | 163 | moc_load.o: moc_load.cpp \ |
164 | load.h | 164 | load.h |
165 | 165 | ||
166 | moc_storage.o: moc_storage.cpp \ | 166 | moc_storage.o: moc_storage.cpp \ |
167 | storage.h | 167 | storage.h |
diff --git a/noncore/settings/sysinfo/sysinfo.pro b/noncore/settings/sysinfo/sysinfo.pro index 0c7d907..3393a12 100644 --- a/noncore/settings/sysinfo/sysinfo.pro +++ b/noncore/settings/sysinfo/sysinfo.pro | |||
@@ -1,25 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = memory.h \ | 4 | HEADERS = memory.h \ |
5 | graph.h \ | 5 | graph.h \ |
6 | load.h \ | 6 | load.h \ |
7 | storage.h \ | 7 | storage.h \ |
8 | versioninfo.h \ | 8 | versioninfo.h \ |
9 | sysinfo.h | 9 | sysinfo.h |
10 | SOURCES = main.cpp \ | 10 | SOURCES = main.cpp \ |
11 | memory.cpp \ | 11 | memory.cpp \ |
12 | graph.cpp \ | 12 | graph.cpp \ |
13 | load.cpp \ | 13 | load.cpp \ |
14 | storage.cpp \ | 14 | storage.cpp \ |
15 | versioninfo.cpp \ | 15 | versioninfo.cpp \ |
16 | sysinfo.cpp | 16 | sysinfo.cpp |
17 | INTERFACES= | 17 | INTERFACES= |
18 | 18 | ||
19 | INCLUDEPATH += $(QPEDIR)/include | 19 | INCLUDEPATH += $(OPIEDIR)/include |
20 | DEPENDPATH+= $(QPEDIR)/include | 20 | DEPENDPATH+= $(OPIEDIR)/include |
21 | LIBS += -lqpe | 21 | LIBS += -lqpe |
22 | 22 | ||
23 | TARGET = sysinfo | 23 | TARGET = sysinfo |
24 | 24 | ||
25 | TRANSLATIONS = ../i18n/de/sysinfo.ts | 25 | TRANSLATIONS = ../i18n/de/sysinfo.ts |
diff --git a/noncore/tools/calc2/binary/binary.pro b/noncore/tools/calc2/binary/binary.pro index 01ba6a4..2e9ed78 100644 --- a/noncore/tools/calc2/binary/binary.pro +++ b/noncore/tools/calc2/binary/binary.pro | |||
@@ -1,16 +1,16 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG -= moc | 2 | CONFIG -= moc |
3 | CONFIG += qt release | 3 | CONFIG += qt release |
4 | 4 | ||
5 | # Input | 5 | # Input |
6 | INTERFACES += binary.ui | 6 | INTERFACES += binary.ui |
7 | HEADERS = binaryimpl.h \ | 7 | HEADERS = binaryimpl.h \ |
8 | binaryfactory.h | 8 | binaryfactory.h |
9 | SOURCES = binaryimpl.cpp \ | 9 | SOURCES = binaryimpl.cpp \ |
10 | binaryfactory.cpp | 10 | binaryfactory.cpp |
11 | 11 | ||
12 | INCLUDEPATH += $(QPEDIR)/include \ | 12 | INCLUDEPATH += $(OPIEDIR)/include \ |
13 | $(QPEDIR)/calc2 | 13 | $(OPIEDIR)/calc2 |
14 | DEPENDPATH += $(QPEDIR)/include | 14 | DEPENDPATH += $(OPIEDIR)/include |
15 | 15 | ||
16 | DESTDIR = $(QPEDIR)/plugins/calculator | 16 | DESTDIR = $(OPIEDIR)/plugins/calculator |
diff --git a/noncore/tools/calc2/calc.pro b/noncore/tools/calc2/calc.pro index c10232a..00e13b7 100644 --- a/noncore/tools/calc2/calc.pro +++ b/noncore/tools/calc2/calc.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt release | 2 | CONFIG += qt release |
3 | 3 | ||
4 | # Input | 4 | # Input |
5 | HEADERS += calc.h plugininterface.h instruction.h engine.h stdinstructions.h | 5 | HEADERS += calc.h plugininterface.h instruction.h engine.h stdinstructions.h |
6 | SOURCES += calc.cpp main.cpp engine.cpp | 6 | SOURCES += calc.cpp main.cpp engine.cpp |
7 | 7 | ||
8 | INCLUDEPATH += $(QPEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(QPEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe -Wl,-export-dynamic | 10 | LIBS += -lqpe -Wl,-export-dynamic |
11 | 11 | ||
diff --git a/noncore/tools/calc2/simple/simple.pro b/noncore/tools/calc2/simple/simple.pro index 92378a6..9e5d4e0 100644 --- a/noncore/tools/calc2/simple/simple.pro +++ b/noncore/tools/calc2/simple/simple.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG -= moc | 2 | CONFIG -= moc |
3 | CONFIG += qt release | 3 | CONFIG += qt release |
4 | 4 | ||
5 | # Input | 5 | # Input |
6 | INTERFACES += simple.ui | 6 | INTERFACES += simple.ui |
7 | HEADERS = simpleimpl.h simplefactory.h stdinstructions.h | 7 | HEADERS = simpleimpl.h simplefactory.h stdinstructions.h |
8 | SOURCES = simpleimpl.cpp simplefactory.cpp | 8 | SOURCES = simpleimpl.cpp simplefactory.cpp |
9 | 9 | ||
10 | INCLUDEPATH += $(QPEDIR)/include \ | 10 | INCLUDEPATH += $(OPIEDIR)/include \ |
11 | $(QPEDIR)/calc2 | 11 | $(OPIEDIR)/calc2 |
12 | DEPENDPATH += $(QPEDIR)/include | 12 | DEPENDPATH += $(OPIEDIR)/include |
13 | 13 | ||
14 | DESTDIR = $(QPEDIR)/plugins/calculator | 14 | DESTDIR = $(OPIEDIR)/plugins/calculator |
diff --git a/noncore/tools/calculator/Makefile.in b/noncore/tools/calculator/Makefile.in index d62b046..ba78df5 100644 --- a/noncore/tools/calculator/Makefile.in +++ b/noncore/tools/calculator/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= calculator | 21 | TARGET= calculator |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =calculatorimpl.h | 26 | HEADERS =calculatorimpl.h |
27 | SOURCES =calculatorimpl.cpp \ | 27 | SOURCES =calculatorimpl.cpp \ |
28 | main.cpp | 28 | main.cpp |
29 | OBJECTS =calculatorimpl.o \ | 29 | OBJECTS =calculatorimpl.o \ |
@@ -95,35 +95,35 @@ REQUIRES= | |||
95 | ####### Sub-libraries | 95 | ####### Sub-libraries |
96 | 96 | ||
97 | 97 | ||
98 | ###### Combined headers | 98 | ###### Combined headers |
99 | 99 | ||
100 | 100 | ||
101 | 101 | ||
102 | ####### Compile | 102 | ####### Compile |
103 | 103 | ||
104 | calculatorimpl.o: calculatorimpl.cpp \ | 104 | calculatorimpl.o: calculatorimpl.cpp \ |
105 | calculatorimpl.h \ | 105 | calculatorimpl.h \ |
106 | calculator.h \ | 106 | calculator.h \ |
107 | $(QPEDIR)/include/qpe/resource.h \ | 107 | $(OPIEDIR)/include/qpe/resource.h \ |
108 | $(QPEDIR)/include/qpe/qmath.h \ | 108 | $(OPIEDIR)/include/qpe/qmath.h \ |
109 | $(QPEDIR)/include/qpe/qpeapplication.h | 109 | $(OPIEDIR)/include/qpe/qpeapplication.h |
110 | 110 | ||
111 | main.o: main.cpp \ | 111 | main.o: main.cpp \ |
112 | calculatorimpl.h \ | 112 | calculatorimpl.h \ |
113 | calculator.h \ | 113 | calculator.h \ |
114 | $(QPEDIR)/include/qpe/qpeapplication.h | 114 | $(OPIEDIR)/include/qpe/qpeapplication.h |
115 | 115 | ||
116 | calculator.h: calculator.ui | 116 | calculator.h: calculator.ui |
117 | $(UIC) calculator.ui -o calculator.h | 117 | $(UIC) calculator.ui -o $(INTERFACE_DECL_PATH)/calculator.h |
118 | 118 | ||
119 | calculator.cpp: calculator.ui | 119 | calculator.cpp: calculator.ui |
120 | $(UIC) calculator.ui -i calculator.h -o calculator.cpp | 120 | $(UIC) calculator.ui -i calculator.h -o calculator.cpp |
121 | 121 | ||
122 | calculator.o: calculator.cpp \ | 122 | calculator.o: calculator.cpp \ |
123 | calculator.h \ | 123 | calculator.h \ |
124 | calculator.ui | 124 | calculator.ui |
125 | 125 | ||
126 | moc_calculatorimpl.o: moc_calculatorimpl.cpp \ | 126 | moc_calculatorimpl.o: moc_calculatorimpl.cpp \ |
127 | calculatorimpl.h \ | 127 | calculatorimpl.h \ |
128 | calculator.h | 128 | calculator.h |
129 | 129 | ||
diff --git a/noncore/tools/calculator/calculator.pro b/noncore/tools/calculator/calculator.pro index 1281fd5..9554d2a 100644 --- a/noncore/tools/calculator/calculator.pro +++ b/noncore/tools/calculator/calculator.pro | |||
@@ -1,13 +1,13 @@ | |||
1 | DESTDIR = $(QPEDIR)/bin | 1 | DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = calculatorimpl.h | 4 | HEADERS = calculatorimpl.h |
5 | SOURCES = calculatorimpl.cpp \ | 5 | SOURCES = calculatorimpl.cpp \ |
6 | main.cpp | 6 | main.cpp |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(QPEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | INTERFACES= calculator.ui | 10 | INTERFACES= calculator.ui |
11 | TARGET = calculator | 11 | TARGET = calculator |
12 | 12 | ||
13 | TRANSLATIONS = ../i18n/de/calculator.ts | 13 | TRANSLATIONS = ../i18n/de/calculator.ts |
diff --git a/noncore/tools/clock/Makefile.in b/noncore/tools/clock/Makefile.in index adda9e6..efa7808 100644 --- a/noncore/tools/clock/Makefile.in +++ b/noncore/tools/clock/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= clock | 21 | TARGET= clock |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =clock.h | 26 | HEADERS =clock.h |
27 | SOURCES =clock.cpp \ | 27 | SOURCES =clock.cpp \ |
28 | main.cpp | 28 | main.cpp |
29 | OBJECTS =clock.o \ | 29 | OBJECTS =clock.o \ |
@@ -91,28 +91,28 @@ REQUIRES= | |||
91 | 91 | ||
92 | ####### Sub-libraries | 92 | ####### Sub-libraries |
93 | 93 | ||
94 | 94 | ||
95 | ###### Combined headers | 95 | ###### Combined headers |
96 | 96 | ||
97 | 97 | ||
98 | 98 | ||
99 | ####### Compile | 99 | ####### Compile |
100 | 100 | ||
101 | clock.o: clock.cpp \ | 101 | clock.o: clock.cpp \ |
102 | clock.h \ | 102 | clock.h \ |
103 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 103 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
104 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 104 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
105 | $(QPEDIR)/include/qpe/config.h \ | 105 | $(OPIEDIR)/include/qpe/config.h \ |
106 | $(QPEDIR)/include/qpe/timestring.h | 106 | $(OPIEDIR)/include/qpe/timestring.h |
107 | 107 | ||
108 | main.o: main.cpp \ | 108 | main.o: main.cpp \ |
109 | clock.h \ | 109 | clock.h \ |
110 | $(QPEDIR)/include/qpe/qpeapplication.h | 110 | $(OPIEDIR)/include/qpe/qpeapplication.h |
111 | 111 | ||
112 | moc_clock.o: moc_clock.cpp \ | 112 | moc_clock.o: moc_clock.cpp \ |
113 | clock.h | 113 | clock.h |
114 | 114 | ||
115 | moc_clock.cpp: clock.h | 115 | moc_clock.cpp: clock.h |
116 | $(MOC) clock.h -o moc_clock.cpp | 116 | $(MOC) clock.h -o moc_clock.cpp |
117 | 117 | ||
118 | 118 | ||
diff --git a/noncore/tools/clock/clock.pro b/noncore/tools/clock/clock.pro index 97f4d2c..ec27adc 100644 --- a/noncore/tools/clock/clock.pro +++ b/noncore/tools/clock/clock.pro | |||
@@ -1,13 +1,13 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = clock.h | 4 | HEADERS = clock.h |
5 | SOURCES = clock.cpp \ | 5 | SOURCES = clock.cpp \ |
6 | main.cpp | 6 | main.cpp |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(QPEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | INTERFACES= | 10 | INTERFACES= |
11 | TARGET = clock | 11 | TARGET = clock |
12 | 12 | ||
13 | TRANSLATIONS = ../i18n/de/clock.ts | 13 | TRANSLATIONS = ../i18n/de/clock.ts |
diff --git a/noncore/unsupported/filebrowser/Makefile.in b/noncore/unsupported/filebrowser/Makefile.in index c7238ea..c00d0f5 100644 --- a/noncore/unsupported/filebrowser/Makefile.in +++ b/noncore/unsupported/filebrowser/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= filebrowser | 21 | TARGET= filebrowser |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =inlineedit.h \ | 26 | HEADERS =inlineedit.h \ |
27 | filebrowser.h | 27 | filebrowser.h |
28 | SOURCES =filebrowser.cpp \ | 28 | SOURCES =filebrowser.cpp \ |
29 | inlineedit.cpp \ | 29 | inlineedit.cpp \ |
@@ -97,38 +97,38 @@ REQUIRES= | |||
97 | ####### Sub-libraries | 97 | ####### Sub-libraries |
98 | 98 | ||
99 | 99 | ||
100 | ###### Combined headers | 100 | ###### Combined headers |
101 | 101 | ||
102 | 102 | ||
103 | 103 | ||
104 | ####### Compile | 104 | ####### Compile |
105 | 105 | ||
106 | filebrowser.o: filebrowser.cpp \ | 106 | filebrowser.o: filebrowser.cpp \ |
107 | inlineedit.h \ | 107 | inlineedit.h \ |
108 | filebrowser.h \ | 108 | filebrowser.h \ |
109 | $(QPEDIR)/include/qpe/resource.h \ | 109 | $(OPIEDIR)/include/qpe/resource.h \ |
110 | $(QPEDIR)/include/qpe/global.h \ | 110 | $(OPIEDIR)/include/qpe/global.h \ |
111 | $(QPEDIR)/include/qpe/mimetype.h \ | 111 | $(OPIEDIR)/include/qpe/mimetype.h \ |
112 | $(QPEDIR)/include/qpe/applnk.h \ | 112 | $(OPIEDIR)/include/qpe/applnk.h \ |
113 | $(QPEDIR)/include/qpe/qpetoolbar.h \ | 113 | $(OPIEDIR)/include/qpe/qpetoolbar.h \ |
114 | $(QPEDIR)/include/qpe/qpemenubar.h | 114 | $(OPIEDIR)/include/qpe/qpemenubar.h |
115 | 115 | ||
116 | inlineedit.o: inlineedit.cpp \ | 116 | inlineedit.o: inlineedit.cpp \ |
117 | inlineedit.h | 117 | inlineedit.h |
118 | 118 | ||
119 | main.o: main.cpp \ | 119 | main.o: main.cpp \ |
120 | filebrowser.h \ | 120 | filebrowser.h \ |
121 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 121 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
122 | $(QPEDIR)/include/qpe/mimetype.h | 122 | $(OPIEDIR)/include/qpe/mimetype.h |
123 | 123 | ||
124 | moc_inlineedit.o: moc_inlineedit.cpp \ | 124 | moc_inlineedit.o: moc_inlineedit.cpp \ |
125 | inlineedit.h | 125 | inlineedit.h |
126 | 126 | ||
127 | moc_filebrowser.o: moc_filebrowser.cpp \ | 127 | moc_filebrowser.o: moc_filebrowser.cpp \ |
128 | filebrowser.h | 128 | filebrowser.h |
129 | 129 | ||
130 | moc_inlineedit.cpp: inlineedit.h | 130 | moc_inlineedit.cpp: inlineedit.h |
131 | $(MOC) inlineedit.h -o moc_inlineedit.cpp | 131 | $(MOC) inlineedit.h -o moc_inlineedit.cpp |
132 | 132 | ||
133 | moc_filebrowser.cpp: filebrowser.h | 133 | moc_filebrowser.cpp: filebrowser.h |
134 | $(MOC) filebrowser.h -o moc_filebrowser.cpp | 134 | $(MOC) filebrowser.h -o moc_filebrowser.cpp |
diff --git a/noncore/unsupported/filebrowser/filebrowser.pro b/noncore/unsupported/filebrowser/filebrowser.pro index 34df79a..5d8f140 100644 --- a/noncore/unsupported/filebrowser/filebrowser.pro +++ b/noncore/unsupported/filebrowser/filebrowser.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(QPEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = inlineedit.h \ | 4 | HEADERS = inlineedit.h \ |
5 | filebrowser.h | 5 | filebrowser.h |
6 | SOURCES = filebrowser.cpp \ | 6 | SOURCES = filebrowser.cpp \ |
7 | inlineedit.cpp \ | 7 | inlineedit.cpp \ |
8 | main.cpp | 8 | main.cpp |
9 | INCLUDEPATH += $(QPEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH+= $(QPEDIR)/include | 10 | DEPENDPATH+= $(OPIEDIR)/include |
11 | LIBS += -lqpe | 11 | LIBS += -lqpe |
12 | INTERFACES= | 12 | INTERFACES= |
diff --git a/noncore/unsupported/oipkg/Makefile.in b/noncore/unsupported/oipkg/Makefile.in index 8dd7edb..a7e22ef 100644 --- a/noncore/unsupported/oipkg/Makefile.in +++ b/noncore/unsupported/oipkg/Makefile.in | |||
@@ -1,29 +1,29 @@ | |||
1 | ############################################################################# | 1 | ############################################################################# |
2 | 2 | ||
3 | ####### Compiler, tools and options | 3 | ####### Compiler, tools and options |
4 | 4 | ||
5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) | 5 | CXX =$(SYSCONF_CXX) $(QT_CXX_MT) |
6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) | 6 | CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) |
7 | CC =$(SYSCONF_CC) $(QT_C_MT) | 7 | CC =$(SYSCONF_CC) $(QT_C_MT) |
8 | CFLAGS =$(SYSCONF_CFLAGS) | 8 | CFLAGS =$(SYSCONF_CFLAGS) |
9 | INCPATH =-I$(QPEDIR)/include | 9 | INCPATH =-I$(OPIEDIR)/include |
10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) | 10 | LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) |
11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) | 11 | LIBS =$(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) |
12 | MOC =$(SYSCONF_MOC) | 12 | MOC =$(SYSCONF_MOC) |
13 | UIC =$(SYSCONF_UIC) | 13 | UIC =$(SYSCONF_UIC) |
14 | 14 | ||
15 | ####### Target | 15 | ####### Target |
16 | 16 | ||
17 | DESTDIR = $(QPEDIR)/bin/ | 17 | DESTDIR = $(OPIEDIR)/bin/ |
18 | VER_MAJ = 1 | 18 | VER_MAJ = 1 |
19 | VER_MIN = 0 | 19 | VER_MIN = 0 |
20 | VER_PATCH = 0 | 20 | VER_PATCH = 0 |
21 | TARGET= qipkg | 21 | TARGET= qipkg |
22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) | 22 | TARGET1 = lib$(TARGET).so.$(VER_MAJ) |
23 | 23 | ||
24 | ####### Files | 24 | ####### Files |
25 | 25 | ||
26 | HEADERS =packagemanager.h | 26 | HEADERS =packagemanager.h |
27 | SOURCES =packagemanager.cpp \ | 27 | SOURCES =packagemanager.cpp \ |
28 | main.cpp | 28 | main.cpp |
29 | OBJECTS =packagemanager.o \ | 29 | OBJECTS =packagemanager.o \ |
@@ -116,35 +116,35 @@ REQUIRES= | |||
116 | ###### Combined headers | 116 | ###### Combined headers |
117 | 117 | ||
118 | 118 | ||
119 | 119 | ||
120 | ####### Compile | 120 | ####### Compile |
121 | 121 | ||
122 | packagemanager.o: packagemanager.cpp \ | 122 | packagemanager.o: packagemanager.cpp \ |
123 | packagemanager.h \ | 123 | packagemanager.h \ |
124 | packagemanagerbase.h \ | 124 | packagemanagerbase.h \ |
125 | pkdesc.h \ | 125 | pkdesc.h \ |
126 | pkfind.h \ | 126 | pkfind.h \ |
127 | pksettings.h \ | 127 | pksettings.h \ |
128 | $(QPEDIR)/include/qpe/process.h \ | 128 | $(OPIEDIR)/include/qpe/process.h \ |
129 | $(QPEDIR)/include/qpe/resource.h \ | 129 | $(OPIEDIR)/include/qpe/resource.h \ |
130 | $(QPEDIR)/include/qpe/stringutil.h \ | 130 | $(OPIEDIR)/include/qpe/stringutil.h \ |
131 | $(QPEDIR)/include/qpe/qpeapplication.h \ | 131 | $(OPIEDIR)/include/qpe/qpeapplication.h \ |
132 | $(QPEDIR)/include/qpe/qcopenvelope_qws.h \ | 132 | $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ |
133 | $(QPEDIR)/include/qpe/applnk.h | 133 | $(OPIEDIR)/include/qpe/applnk.h |
134 | 134 | ||
135 | main.o: main.cpp \ | 135 | main.o: main.cpp \ |
136 | packagemanager.h \ | 136 | packagemanager.h \ |
137 | packagemanagerbase.h \ | 137 | packagemanagerbase.h \ |
138 | $(QPEDIR)/include/qpe/qpeapplication.h | 138 | $(OPIEDIR)/include/qpe/qpeapplication.h |
139 | 139 | ||
140 | packagemanagerbase.h: packagemanagerbase.ui | 140 | packagemanagerbase.h: packagemanagerbase.ui |
141 | $(UIC) packagemanagerbase.ui -o $(INTERFACE_DECL_PATH)/packagemanagerbase.h | 141 | $(UIC) packagemanagerbase.ui -o $(INTERFACE_DECL_PATH)/packagemanagerbase.h |
142 | 142 | ||
143 | packagemanagerbase.cpp: packagemanagerbase.ui | 143 | packagemanagerbase.cpp: packagemanagerbase.ui |
144 | $(UIC) packagemanagerbase.ui -i packagemanagerbase.h -o packagemanagerbase.cpp | 144 | $(UIC) packagemanagerbase.ui -i packagemanagerbase.h -o packagemanagerbase.cpp |
145 | 145 | ||
146 | pkdesc.h: pkdesc.ui | 146 | pkdesc.h: pkdesc.ui |
147 | $(UIC) pkdesc.ui -o $(INTERFACE_DECL_PATH)/pkdesc.h | 147 | $(UIC) pkdesc.ui -o $(INTERFACE_DECL_PATH)/pkdesc.h |
148 | 148 | ||
149 | pkdesc.cpp: pkdesc.ui | 149 | pkdesc.cpp: pkdesc.ui |
150 | $(UIC) pkdesc.ui -i pkdesc.h -o pkdesc.cpp | 150 | $(UIC) pkdesc.ui -i pkdesc.h -o pkdesc.cpp |
diff --git a/noncore/unsupported/oipkg/qipkg.pro b/noncore/unsupported/oipkg/qipkg.pro index 90d8703..22a37ee 100644 --- a/noncore/unsupported/oipkg/qipkg.pro +++ b/noncore/unsupported/oipkg/qipkg.pro | |||
@@ -1,13 +1,13 @@ | |||
1 | DESTDIR = $(QPEDIR)/bin | 1 | DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = packagemanager.h | 4 | HEADERS = packagemanager.h |
5 | SOURCES = packagemanager.cpp \ | 5 | SOURCES = packagemanager.cpp \ |
6 | main.cpp | 6 | main.cpp |
7 | INCLUDEPATH += $(QPEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(QPEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | INTERFACES= packagemanagerbase.ui pkdesc.ui pkfind.ui pksettings.ui | 10 | INTERFACES= packagemanagerbase.ui pkdesc.ui pkfind.ui pksettings.ui |
11 | TARGET = qipkg | 11 | TARGET = qipkg |
12 | 12 | ||
13 | TRANSLATIONS = ../i18n/de/qipkg.ts | 13 | TRANSLATIONS = ../i18n/de/qipkg.ts |
diff --git a/scripts/q_functions b/scripts/q_functions index cf2c2e1..0705cc2 100755 --- a/scripts/q_functions +++ b/scripts/q_functions | |||
@@ -130,34 +130,34 @@ INTERFACES = | |||
130 | INCLUDEPATH+= ../library | 130 | INCLUDEPATH+= ../library |
131 | DEPENDPATH+= ../library | 131 | DEPENDPATH+= ../library |
132 | LIBS += -lqpe | 132 | LIBS += -lqpe |
133 | TARGET = $NEW_APP_NAME | 133 | TARGET = $NEW_APP_NAME |
134 | END | 134 | END |
135 | } | 135 | } |
136 | 136 | ||
137 | 137 | ||
138 | function print_install_file | 138 | function print_install_file |
139 | { | 139 | { |
140 | cat << END | 140 | cat << END |
141 | #!/bin/sh | 141 | #!/bin/sh |
142 | if [ a\$QPEDIR = a ] | 142 | if [ a\$OPIEDIR = a ] |
143 | then | 143 | then |
144 | echo QPEDIR must be set | 144 | echo OPIEDIR must be set |
145 | exit | 145 | exit |
146 | fi | 146 | fi |
147 | [ -f \$QPEDIR/pics/$NEW_APP_ICON_FILE ] || cp $NEW_APP_ICON_FILE \$QPEDIR/pics/ | 147 | [ -f \$OPIEDIR/pics/$NEW_APP_ICON_FILE ] || cp $NEW_APP_ICON_FILE \$OPIEDIR/pics/ |
148 | [ -f \$QPEDIR/apps/$NEW_APP_DESKTOP_FILE ] || cp $NEW_APP_DESKTOP_FILE \$QPEDIR/apps/ | 148 | [ -f \$OPIEDIR/apps/$NEW_APP_DESKTOP_FILE ] || cp $NEW_APP_DESKTOP_FILE \$OPIEDIR/apps/ |
149 | mv \$QPEDIR/Makefile \$QPEDIR/Makefile.orig | 149 | mv \$OPIEDIR/Makefile \$OPIEDIR/Makefile.orig |
150 | sed "s/APPS=/&$NEW_APP_NAME \\\\\\\\ \\\\ | 150 | sed "s/APPS=/&$NEW_APP_NAME \\\\\\\\ \\\\ |
151 | /" \$QPEDIR/Makefile.orig >> \$QPEDIR/Makefile | 151 | /" \$OPIEDIR/Makefile.orig >> \$OPIEDIR/Makefile |
152 | echo You may wish to move the desktop file in to | 152 | echo You may wish to move the desktop file in to |
153 | echo an appropriate subdirectory of the menus. | 153 | echo an appropriate subdirectory of the menus. |
154 | END | 154 | END |
155 | } | 155 | } |
156 | 156 | ||
157 | 157 | ||
158 | function print_desktop_file | 158 | function print_desktop_file |
159 | { | 159 | { |
160 | cat << END | 160 | cat << END |
161 | [Desktop Entry] | 161 | [Desktop Entry] |
162 | Type=Application | 162 | Type=Application |
163 | Exec=$NEW_APP_NAME | 163 | Exec=$NEW_APP_NAME |