author | mickeyl <mickeyl> | 2004-01-05 15:41:45 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-01-05 15:41:45 (UTC) |
commit | 22e51ed82162ef307f3f8cef21d3288147f18cad (patch) (unidiff) | |
tree | d3318a78deb837c91aca6d048ad649716060a5a3 | |
parent | 969831e80dd285e8c95e8a91333a626717d5543e (diff) | |
download | opie-22e51ed82162ef307f3f8cef21d3288147f18cad.zip opie-22e51ed82162ef307f3f8cef21d3288147f18cad.tar.gz opie-22e51ed82162ef307f3f8cef21d3288147f18cad.tar.bz2 |
support a customizable quicklaunch path, this fixes the problem when
people install quicklaunch applications to non-root hence having
the link pointing to non-existing ./quicklauncher
-rw-r--r-- | Rules.make | 1 | ||||
-rw-r--r-- | config.in | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -1,152 +1,153 @@ | |||
1 | .phony: force | 1 | .phony: force |
2 | force: | 2 | force: |
3 | 3 | ||
4 | $(configs) : | 4 | $(configs) : |
5 | $(call makecfg,$@) | 5 | $(call makecfg,$@) |
6 | 6 | ||
7 | $(TOPDIR)/gen.pro : $(TOPDIR)/.config | 7 | $(TOPDIR)/gen.pro : $(TOPDIR)/.config |
8 | echo > $@ | 8 | echo > $@ |
9 | ifneq ($(CONFIG_DEBUG),) | 9 | ifneq ($(CONFIG_DEBUG),) |
10 | echo CONFIG += debug >> $@ | 10 | echo CONFIG += debug >> $@ |
11 | echo CONFIG -= release >> $@ | 11 | echo CONFIG -= release >> $@ |
12 | else | 12 | else |
13 | echo CONFIG -= debug >> $@ | 13 | echo CONFIG -= debug >> $@ |
14 | echo CONFIG += release >> $@ | 14 | echo CONFIG += release >> $@ |
15 | endif | 15 | endif |
16 | ifeq ($(filter 3.%,$(QTE_VERSION)),) # not qt3 | 16 | ifeq ($(filter 3.%,$(QTE_VERSION)),) # not qt3 |
17 | echo CONFIG -= qt3 >> $@ | 17 | echo CONFIG -= qt3 >> $@ |
18 | else | 18 | else |
19 | echo CONFIG += qt3 >> $@ | 19 | echo CONFIG += qt3 >> $@ |
20 | endif | 20 | endif |
21 | ifneq ($(CONFIG_QUICK_LAUNCH),) | 21 | ifneq ($(CONFIG_QUICK_LAUNCH),) |
22 | echo contains\( CONFIG, quick-app \) \{ >> $@ | 22 | echo contains\( CONFIG, quick-app \) \{ >> $@ |
23 | echo CONFIG -= quick-app >> $@ | 23 | echo CONFIG -= quick-app >> $@ |
24 | echo CONFIG += quick-app-lib >> $@ | 24 | echo CONFIG += quick-app-lib >> $@ |
25 | echo QUICKLAUNCH_PATH = $(CONFIG_QUICKLAUNCH_PATH) >> $@ | ||
25 | echo \} >> $@ | 26 | echo \} >> $@ |
26 | else | 27 | else |
27 | echo contains\( CONFIG, quick-app \) \{ >> $@ | 28 | echo contains\( CONFIG, quick-app \) \{ >> $@ |
28 | echo CONFIG -= quick-app >> $@ | 29 | echo CONFIG -= quick-app >> $@ |
29 | echo CONFIG += quick-app-bin >> $@ | 30 | echo CONFIG += quick-app-bin >> $@ |
30 | echo \} >> $@ | 31 | echo \} >> $@ |
31 | endif | 32 | endif |
32 | ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) | 33 | ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) |
33 | echo CONFIG += no-override >> $@ | 34 | echo CONFIG += no-override >> $@ |
34 | endif | 35 | endif |
35 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) | 36 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) |
36 | echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ | 37 | echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ |
37 | endif | 38 | endif |
38 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) | 39 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) |
39 | echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ | 40 | echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ |
40 | endif | 41 | endif |
41 | ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) | 42 | ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) |
42 | echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ | 43 | echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ |
43 | endif | 44 | endif |
44 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) | 45 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) |
45 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ | 46 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ |
46 | endif | 47 | endif |
47 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) | 48 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) |
48 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ | 49 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ |
49 | endif | 50 | endif |
50 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) | 51 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) |
51 | echo DEFINES += OPIE_NEW_MALLOC >> $@ | 52 | echo DEFINES += OPIE_NEW_MALLOC >> $@ |
52 | endif | 53 | endif |
53 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) | 54 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) |
54 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ | 55 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ |
55 | endif | 56 | endif |
56 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ | 57 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ |
57 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages | 58 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages |
58 | @echo Generating dependency information... | 59 | @echo Generating dependency information... |
59 | # add to subdir-y, and add descend rules | 60 | # add to subdir-y, and add descend rules |
60 | @cat $(TOPDIR)/packages | grep -v '^#' | \ | 61 | @cat $(TOPDIR)/packages | grep -v '^#' | \ |
61 | awk '{print \ | 62 | awk '{print \ |
62 | ".PHONY : " $$2 "\n" \ | 63 | ".PHONY : " $$2 "\n" \ |
63 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ | 64 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ |
64 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends | 65 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends |
65 | cat $(TOPDIR)/packages | grep -v '^#' | \ | 66 | cat $(TOPDIR)/packages | grep -v '^#' | \ |
66 | perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ | 67 | perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ |
67 | >> $(TOPDIR)/.depends | 68 | >> $(TOPDIR)/.depends |
68 | # interpackage dependency generation | 69 | # interpackage dependency generation |
69 | @cat $(TOPDIR)/packages | \ | 70 | @cat $(TOPDIR)/packages | \ |
70 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends | 71 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends |
71 | 72 | ||
72 | $(TOPDIR)/.depends.cfgs: | 73 | $(TOPDIR)/.depends.cfgs: |
73 | # config.in interdependencies | 74 | # config.in interdependencies |
74 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs | 75 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs |
75 | @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ | 76 | @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ |
76 | @-rm -f dirs | 77 | @-rm -f dirs |
77 | 78 | ||
78 | $(QTDIR)/stamp-headers : | 79 | $(QTDIR)/stamp-headers : |
79 | @-rm -f $(QTDIR)/stamp-headers* | 80 | @-rm -f $(QTDIR)/stamp-headers* |
80 | ( cd $(QTDIR)/include; \ | 81 | ( cd $(QTDIR)/include; \ |
81 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ | 82 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ |
82 | qcopchannel_qws.h qwindowsystem_qws.h \ | 83 | qcopchannel_qws.h qwindowsystem_qws.h \ |
83 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) | 84 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) |
84 | touch $@ | 85 | touch $@ |
85 | 86 | ||
86 | $(QTDIR)/stamp-headers-x11 : | 87 | $(QTDIR)/stamp-headers-x11 : |
87 | @-rm -f $(QTDIR)/stamp-headers* | 88 | @-rm -f $(QTDIR)/stamp-headers* |
88 | cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h) | 89 | cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h) |
89 | touch $@ | 90 | touch $@ |
90 | 91 | ||
91 | $(OPIEDIR)/stamp-headers : | 92 | $(OPIEDIR)/stamp-headers : |
92 | @-rm -f $(OPIEDIR)/stamp-headers* | 93 | @-rm -f $(OPIEDIR)/stamp-headers* |
93 | mkdir -p $(TOPDIR)/include/qpe \ | 94 | mkdir -p $(TOPDIR)/include/qpe \ |
94 | $(TOPDIR)/include/qtopia \ | 95 | $(TOPDIR)/include/qtopia \ |
95 | $(TOPDIR)/include/opie \ | 96 | $(TOPDIR)/include/opie \ |
96 | $(TOPDIR)/include/opie2 \ | 97 | $(TOPDIR)/include/opie2 \ |
97 | $(TOPDIR)/include/qtopia/private | 98 | $(TOPDIR)/include/qtopia/private |
98 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) | 99 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) |
99 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) | 100 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) |
100 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) | 101 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) |
101 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) | 102 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) |
102 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) | 103 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) |
103 | ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) | 104 | ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) |
104 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) | 105 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) |
105 | ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) | 106 | ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) |
106 | ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) | 107 | ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) |
107 | ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) | 108 | ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) |
108 | #( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) | 109 | #( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) |
109 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) | 110 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) |
110 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 111 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
111 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) | 112 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
112 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h | 113 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
113 | touch $@ | 114 | touch $@ |
114 | 115 | ||
115 | $(OPIEDIR)/stamp-headers-x11 : | 116 | $(OPIEDIR)/stamp-headers-x11 : |
116 | @-rm -f $(OPIEDIR)/stamp-headers* | 117 | @-rm -f $(OPIEDIR)/stamp-headers* |
117 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ | 118 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ |
118 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private | 119 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private |
119 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) | 120 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) |
120 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) | 121 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) |
121 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) | 122 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) |
122 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) | 123 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) |
123 | ( cd include/opie && ln -sf ../../libsql/*.h .; ) | 124 | ( cd include/opie && ln -sf ../../libsql/*.h .; ) |
124 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) | 125 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) |
125 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 126 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
126 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) | 127 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
127 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h | 128 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
128 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) | 129 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) |
129 | touch $@ | 130 | touch $@ |
130 | 131 | ||
131 | $(TOPDIR)/library/custom.h : $(TOPDIR)/.config | 132 | $(TOPDIR)/library/custom.h : $(TOPDIR)/.config |
132 | @-rm -f $@ | 133 | @-rm -f $@ |
133 | @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ | 134 | @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ |
134 | ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) | 135 | ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) |
135 | @touch $@ | 136 | @touch $@ |
136 | 137 | ||
137 | $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake: | 138 | $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake: |
138 | @$(call descend,$(shell dirname $@),$(shell basename $@)) | 139 | @$(call descend,$(shell dirname $@),$(shell basename $@)) |
139 | 140 | ||
140 | menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in | 141 | menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in |
141 | $(TOPDIR)/scripts/kconfig/mconf ./config.in | 142 | $(TOPDIR)/scripts/kconfig/mconf ./config.in |
142 | @touch ./.config.stamp | 143 | @touch ./.config.stamp |
143 | 144 | ||
144 | xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in | 145 | xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in |
145 | $(TOPDIR)/scripts/kconfig/qconf ./config.in | 146 | $(TOPDIR)/scripts/kconfig/qconf ./config.in |
146 | @touch .config.stamp | 147 | @touch .config.stamp |
147 | 148 | ||
148 | gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in | 149 | gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in |
149 | $(TOPDIR)/scripts/kconfig/gconf ./config.in | 150 | $(TOPDIR)/scripts/kconfig/gconf ./config.in |
150 | @touch .config.stamp | 151 | @touch .config.stamp |
151 | 152 | ||
152 | config: $(TOPDIR)/scripts/kconfig/conf ./config.in | 153 | config: $(TOPDIR)/scripts/kconfig/conf ./config.in |
@@ -1,178 +1,182 @@ | |||
1 | mainmenu "Opie Configuration" | 1 | mainmenu "Opie Configuration" |
2 | 2 | ||
3 | menu "Build Parameters" | 3 | menu "Build Parameters" |
4 | 4 | ||
5 | choice | 5 | choice |
6 | prompt "Target Machine" | 6 | prompt "Target Machine" |
7 | default TARGET_X86 | 7 | default TARGET_X86 |
8 | help | 8 | help |
9 | Please select the architecture of the machine you will be | 9 | Please select the architecture of the machine you will be |
10 | building the OpenZaurus buildroot for. | 10 | building the OpenZaurus buildroot for. |
11 | 11 | ||
12 | config TARGET_X86 | 12 | config TARGET_X86 |
13 | boolean "Intel X86" | 13 | boolean "Intel X86" |
14 | 14 | ||
15 | config TARGET_MACOSX | 15 | config TARGET_MACOSX |
16 | boolean "Mac OS X (DARWIN)" | 16 | boolean "Mac OS X (DARWIN)" |
17 | 17 | ||
18 | config TARGET_SHARP | 18 | config TARGET_SHARP |
19 | boolean "Sharp Zaurus" | 19 | boolean "Sharp Zaurus" |
20 | 20 | ||
21 | config TARGET_IPAQ | 21 | config TARGET_IPAQ |
22 | boolean "iPAQ" | 22 | boolean "iPAQ" |
23 | 23 | ||
24 | config TARGET_RAMSES | 24 | config TARGET_RAMSES |
25 | boolean "Ramses" | 25 | boolean "Ramses" |
26 | 26 | ||
27 | config TARGET_SIMPAD | 27 | config TARGET_SIMPAD |
28 | boolean "SIMpad" | 28 | boolean "SIMpad" |
29 | 29 | ||
30 | config TARGET_YOPY | 30 | config TARGET_YOPY |
31 | boolean "Yopy 3500/3700" | 31 | boolean "Yopy 3500/3700" |
32 | 32 | ||
33 | endchoice | 33 | endchoice |
34 | 34 | ||
35 | config OPTIMIZE | 35 | config OPTIMIZE |
36 | boolean "Use optimizations" | 36 | boolean "Use optimizations" |
37 | default "y" if ! TARGET_X86 | 37 | default "y" if ! TARGET_X86 |
38 | 38 | ||
39 | config DEBUG | 39 | config DEBUG |
40 | boolean "Enable debug builds" | 40 | boolean "Enable debug builds" |
41 | default n | 41 | default n |
42 | config RELEASE | 42 | config RELEASE |
43 | bool | 43 | bool |
44 | default y | 44 | default y |
45 | depends !DEBUG | 45 | depends !DEBUG |
46 | 46 | ||
47 | config QUICK_LAUNCH | 47 | config QUICK_LAUNCH |
48 | boolean "Enable Quick Launch" | 48 | boolean "Enable Quick Launch" |
49 | default n | 49 | default n |
50 | 50 | ||
51 | config QUICKLAUNCH_PATH | ||
52 | string "Path to quicklauncher" | ||
53 | default "./quicklauncher" if TARGET_X86 | ||
54 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 | ||
51 | 55 | ||
52 | config SPECFILE | 56 | config SPECFILE |
53 | string | 57 | string |
54 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) | 58 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
55 | default "linux-g++" if TARGET_X86 && X11 | 59 | default "linux-g++" if TARGET_X86 && X11 |
56 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | 60 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
57 | default "linux-g++" if TARGET_SHARP && X11 | 61 | default "linux-g++" if TARGET_SHARP && X11 |
58 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) | 62 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
59 | default "linux-g++" if TARGET_IPAQ && X11 | 63 | default "linux-g++" if TARGET_IPAQ && X11 |
60 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) | 64 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
61 | default "linux-g++" if TARGET_RAMSES && X11 | 65 | default "linux-g++" if TARGET_RAMSES && X11 |
62 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) | 66 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
63 | default "linux-g++" if TARGET_SIMPAD && X11 | 67 | default "linux-g++" if TARGET_SIMPAD && X11 |
64 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) | 68 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
65 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) | 69 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
66 | 70 | ||
67 | config CUSTOMFILE | 71 | config CUSTOMFILE |
68 | string | 72 | string |
69 | default "custom-ipaq.h" if TARGET_IPAQ | 73 | default "custom-ipaq.h" if TARGET_IPAQ |
70 | default "custom-sharp.h" if TARGET_SHARP | 74 | default "custom-sharp.h" if TARGET_SHARP |
71 | default "custom-ramses.h" if TARGET_RAMSES | 75 | default "custom-ramses.h" if TARGET_RAMSES |
72 | default "custom-ipaq.h" if TARGET_SIMPAD | 76 | default "custom-ipaq.h" if TARGET_SIMPAD |
73 | default "custom-yopy.h" if TARGET_YOPY | 77 | default "custom-yopy.h" if TARGET_YOPY |
74 | 78 | ||
75 | config OPTIMIZATIONS | 79 | config OPTIMIZATIONS |
76 | string "Optimization flags" | 80 | string "Optimization flags" |
77 | depends OPTIMIZE | 81 | depends OPTIMIZE |
78 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ | 82 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
79 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY | 83 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
80 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP | 84 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
81 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES | 85 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
82 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD | 86 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
83 | 87 | ||
84 | config EXPERIMENTAL | 88 | config EXPERIMENTAL |
85 | bool "Prompt for development and/or incomplete items" | 89 | bool "Prompt for development and/or incomplete items" |
86 | default y | 90 | default y |
87 | 91 | ||
88 | endmenu | 92 | endmenu |
89 | 93 | ||
90 | menu "Opie Compile Configs" | 94 | menu "Opie Compile Configs" |
91 | config OPIE_NO_OVERRIDE_QT | 95 | config OPIE_NO_OVERRIDE_QT |
92 | boolean "Build Opie against an unpatched version of Qt" | 96 | boolean "Build Opie against an unpatched version of Qt" |
93 | default n | 97 | default n |
94 | 98 | ||
95 | 99 | ||
96 | config OPIE_NO_BUILTIN_SHUTDOWN | 100 | config OPIE_NO_BUILTIN_SHUTDOWN |
97 | boolean "Disable the built in shutdown application" | 101 | boolean "Disable the built in shutdown application" |
98 | default n | 102 | default n |
99 | 103 | ||
100 | config OPIE_NO_BUILTIN_CALIBRATE | 104 | config OPIE_NO_BUILTIN_CALIBRATE |
101 | boolean "Disable the built in calibrate application" | 105 | boolean "Disable the built in calibrate application" |
102 | default y if TARGET_YOPY | 106 | default y if TARGET_YOPY |
103 | default n | 107 | default n |
104 | 108 | ||
105 | config OPIE_SOUND_FRAGMENT_SHIFT | 109 | config OPIE_SOUND_FRAGMENT_SHIFT |
106 | string "The sound fragment used in Opie Player I" | 110 | string "The sound fragment used in Opie Player I" |
107 | default "14" if TARGET_IPAQ | 111 | default "14" if TARGET_IPAQ |
108 | default "16" if (!TARGET_IPAQ) | 112 | default "16" if (!TARGET_IPAQ) |
109 | 113 | ||
110 | config USE_REALTIME_AUDIO_THREAD | 114 | config USE_REALTIME_AUDIO_THREAD |
111 | boolean "Use a realtime thread in Opie Player I" | 115 | boolean "Use a realtime thread in Opie Player I" |
112 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP | 116 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
113 | default n | 117 | default n |
114 | 118 | ||
115 | config QT_QWS_ALLOW_OVERCLOCK | 119 | config QT_QWS_ALLOW_OVERCLOCK |
116 | boolean "Allow the user to overclock the device" | 120 | boolean "Allow the user to overclock the device" |
117 | depends TARGET_RAMSES | 121 | depends TARGET_RAMSES |
118 | default n | 122 | default n |
119 | 123 | ||
120 | config OPIE_HIGH_RES_SMALL_PHY | 124 | config OPIE_HIGH_RES_SMALL_PHY |
121 | boolean "Resolution is bigger than physical scrren" | 125 | boolean "Resolution is bigger than physical scrren" |
122 | default y if TARGET_C700 | 126 | default y if TARGET_C700 |
123 | default n | 127 | default n |
124 | 128 | ||
125 | config OPIE_NEW_ALLOC | 129 | config OPIE_NEW_ALLOC |
126 | boolean "Use malloc and free for the implementation" | 130 | boolean "Use malloc and free for the implementation" |
127 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP | 131 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
128 | default n | 132 | default n |
129 | 133 | ||
130 | config OPIE_NO_SOUND_PCM_READ_BITS | 134 | config OPIE_NO_SOUND_PCM_READ_BITS |
131 | boolean "there is not a pcm_read_bits io control" | 135 | boolean "there is not a pcm_read_bits io control" |
132 | default y if TARGET_SHARP | 136 | default y if TARGET_SHARP |
133 | default n | 137 | default n |
134 | 138 | ||
135 | endmenu | 139 | endmenu |
136 | 140 | ||
137 | menu "Base" | 141 | menu "Base" |
138 | choice | 142 | choice |
139 | prompt "Qpe Library Selection" | 143 | prompt "Qpe Library Selection" |
140 | default LIBQPE | 144 | default LIBQPE |
141 | source library/config.in | 145 | source library/config.in |
142 | source x11/config.in | 146 | source x11/config.in |
143 | endchoice | 147 | endchoice |
144 | source libopie/config.in | 148 | source libopie/config.in |
145 | source core/opie-login/config.in | 149 | source core/opie-login/config.in |
146 | source core/opiealarm/config.in | 150 | source core/opiealarm/config.in |
147 | source core/tools/quicklauncher/config.in | 151 | source core/tools/quicklauncher/config.in |
148 | source core/launcher/config.in | 152 | source core/launcher/config.in |
149 | source core/qws/config.in | 153 | source core/qws/config.in |
150 | endmenu | 154 | endmenu |
151 | 155 | ||
152 | comment "" | 156 | comment "" |
153 | 157 | ||
154 | menu "Applets" | 158 | menu "Applets" |
155 | source core/applets/config.in | 159 | source core/applets/config.in |
156 | source noncore/applets/config.in | 160 | source noncore/applets/config.in |
157 | endmenu | 161 | endmenu |
158 | 162 | ||
159 | menu "Apps" | 163 | menu "Apps" |
160 | source core/apps/config.in | 164 | source core/apps/config.in |
161 | source noncore/apps/config.in | 165 | source noncore/apps/config.in |
162 | endmenu | 166 | endmenu |
163 | 167 | ||
164 | menu "Communications and Networking" | 168 | menu "Communications and Networking" |
165 | source noncore/comm/config.in | 169 | source noncore/comm/config.in |
166 | source noncore/net/config.in | 170 | source noncore/net/config.in |
167 | endmenu | 171 | endmenu |
168 | 172 | ||
169 | menu "Games" | 173 | menu "Games" |
170 | source noncore/games/config.in | 174 | source noncore/games/config.in |
171 | endmenu | 175 | endmenu |
172 | 176 | ||
173 | menu "Graphics and Multimedia" | 177 | menu "Graphics and Multimedia" |
174 | source freetype/config.in | 178 | source freetype/config.in |
175 | source noncore/graphics/config.in | 179 | source noncore/graphics/config.in |
176 | source core/multimedia/config.in | 180 | source core/multimedia/config.in |
177 | source noncore/multimedia/config.in | 181 | source noncore/multimedia/config.in |
178 | endmenu | 182 | endmenu |