|
|
|
@@ -26,64 +26,65 @@ ifneq ($(CONFIG_QUICK_LAUNCH),) |
26 | echo \} >> $@ |
26 | echo \} >> $@ |
27 | else |
27 | else |
28 | echo contains\( CONFIG, quick-app \) \{ >> $@ |
28 | echo contains\( CONFIG, quick-app \) \{ >> $@ |
29 | echo CONFIG -= quick-app >> $@ |
29 | echo CONFIG -= quick-app >> $@ |
30 | echo CONFIG += quick-app-bin >> $@ |
30 | echo CONFIG += quick-app-bin >> $@ |
31 | echo \} >> $@ |
31 | echo \} >> $@ |
32 | endif |
32 | endif |
33 | ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) |
33 | ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) |
34 | echo CONFIG += no-override >> $@ |
34 | echo CONFIG += no-override >> $@ |
35 | endif |
35 | endif |
36 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) |
36 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) |
37 | echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ |
37 | echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ |
38 | endif |
38 | endif |
39 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) |
39 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) |
40 | echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ |
40 | echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ |
41 | endif |
41 | endif |
42 | ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) |
42 | ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) |
43 | echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ |
43 | echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ |
44 | endif |
44 | endif |
45 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) |
45 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) |
46 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ |
46 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ |
47 | endif |
47 | endif |
48 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) |
48 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) |
49 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ |
49 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ |
50 | endif |
50 | endif |
51 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) |
51 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) |
52 | echo DEFINES += OPIE_NEW_MALLOC >> $@ |
52 | echo DEFINES += OPIE_NEW_MALLOC >> $@ |
53 | endif |
53 | endif |
54 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) |
54 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) |
55 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ |
55 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ |
56 | endif |
56 | endif |
57 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ |
57 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ |
| |
58 | echo DEFINES += OPIE_WE_VERSION=$(CONFIG_OPIE_WE_VERSION) >> $@ |
58 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages |
59 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages |
59 | @echo Generating dependency information... |
60 | @echo Generating dependency information... |
60 | # add to subdir-y, and add descend rules |
61 | # add to subdir-y, and add descend rules |
61 | @cat $(TOPDIR)/packages | grep -v '^#' | \ |
62 | @cat $(TOPDIR)/packages | grep -v '^#' | \ |
62 | awk '{print \ |
63 | awk '{print \ |
63 | ".PHONY : " $$2 "\n" \ |
64 | ".PHONY : " $$2 "\n" \ |
64 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ |
65 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ |
65 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends |
66 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends |
66 | cat $(TOPDIR)/packages | grep -v '^#' | \ |
67 | cat $(TOPDIR)/packages | grep -v '^#' | \ |
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"; }' \ |
68 | 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"; }' \ |
68 | >> $(TOPDIR)/.depends |
69 | >> $(TOPDIR)/.depends |
69 | # interpackage dependency generation |
70 | # interpackage dependency generation |
70 | @cat $(TOPDIR)/packages | \ |
71 | @cat $(TOPDIR)/packages | \ |
71 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends |
72 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends |
72 | |
73 | |
73 | $(TOPDIR)/.depends.cfgs: |
74 | $(TOPDIR)/.depends.cfgs: |
74 | # config.in interdependencies |
75 | # config.in interdependencies |
75 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs |
76 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs |
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 ) >> $@ |
77 | @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 ) >> $@ |
77 | @-rm -f dirs |
78 | @-rm -f dirs |
78 | |
79 | |
79 | $(QTDIR)/stamp-headers : |
80 | $(QTDIR)/stamp-headers : |
80 | @-rm -f $(QTDIR)/stamp-headers* |
81 | @-rm -f $(QTDIR)/stamp-headers* |
81 | ( cd $(QTDIR)/include; \ |
82 | ( cd $(QTDIR)/include; \ |
82 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ |
83 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ |
83 | qcopchannel_qws.h qwindowsystem_qws.h \ |
84 | qcopchannel_qws.h qwindowsystem_qws.h \ |
84 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) |
85 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) |
85 | touch $@ |
86 | touch $@ |
86 | |
87 | |
87 | $(QTDIR)/stamp-headers-x11 : |
88 | $(QTDIR)/stamp-headers-x11 : |
88 | @-rm -f $(QTDIR)/stamp-headers* |
89 | @-rm -f $(QTDIR)/stamp-headers* |
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) |
90 | 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) |
|
|
diff --git a/config.in b/config.in index 1ac9a66..96cd28f 100644 --- a/ config.in+++ b/ config.in |
|
@@ -62,109 +62,113 @@ config SPECFILE |
62 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
62 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
63 | default "linux-g++" if TARGET_IPAQ && X11 |
63 | default "linux-g++" if TARGET_IPAQ && X11 |
64 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
64 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
65 | default "linux-g++" if TARGET_RAMSES && X11 |
65 | default "linux-g++" if TARGET_RAMSES && X11 |
66 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
66 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
67 | default "linux-g++" if TARGET_SIMPAD && X11 |
67 | default "linux-g++" if TARGET_SIMPAD && X11 |
68 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
68 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
69 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
69 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
70 | |
70 | |
71 | config CUSTOMFILE |
71 | config CUSTOMFILE |
72 | string |
72 | string |
73 | default "custom-ipaq.h" if TARGET_IPAQ |
73 | default "custom-ipaq.h" if TARGET_IPAQ |
74 | default "custom-sharp.h" if TARGET_SHARP |
74 | default "custom-sharp.h" if TARGET_SHARP |
75 | default "custom-ramses.h" if TARGET_RAMSES |
75 | default "custom-ramses.h" if TARGET_RAMSES |
76 | default "custom-ipaq.h" if TARGET_SIMPAD |
76 | default "custom-ipaq.h" if TARGET_SIMPAD |
77 | default "custom-yopy.h" if TARGET_YOPY |
77 | default "custom-yopy.h" if TARGET_YOPY |
78 | |
78 | |
79 | config OPTIMIZATIONS |
79 | config OPTIMIZATIONS |
80 | string "Optimization flags" |
80 | string "Optimization flags" |
81 | depends OPTIMIZE |
81 | depends OPTIMIZE |
82 | 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 |
83 | 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 |
84 | 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 |
85 | 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 |
86 | 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 |
87 | |
87 | |
88 | config EXPERIMENTAL |
88 | config EXPERIMENTAL |
89 | bool "Prompt for development and/or incomplete items" |
89 | bool "Prompt for development and/or incomplete items" |
90 | default y |
90 | default y |
91 | |
91 | |
92 | endmenu |
92 | endmenu |
93 | |
93 | |
94 | menu "Opie Compile Configs" |
94 | menu "Configuration" |
95 | config OPIE_NO_OVERRIDE_QT |
95 | config OPIE_NO_OVERRIDE_QT |
96 | boolean "Build Opie against an unpatched version of Qt" |
96 | boolean "Build Opie against an unpatched version of Qt" |
97 | default n |
97 | default n |
98 | |
98 | |
99 | |
| |
100 | config OPIE_NO_BUILTIN_SHUTDOWN |
99 | config OPIE_NO_BUILTIN_SHUTDOWN |
101 | boolean "Disable the built in shutdown application" |
100 | boolean "Disable the built in shutdown application" |
102 | default n |
101 | default n |
103 | |
102 | |
104 | config OPIE_NO_BUILTIN_CALIBRATE |
103 | config OPIE_NO_BUILTIN_CALIBRATE |
105 | boolean "Disable the built in calibrate application" |
104 | boolean "Disable the built in calibrate application" |
106 | default y if TARGET_YOPY |
105 | default y if TARGET_YOPY |
107 | default n |
106 | default n |
108 | |
107 | |
109 | config OPIE_SOUND_FRAGMENT_SHIFT |
108 | config OPIE_SOUND_FRAGMENT_SHIFT |
110 | string "The sound fragment used in Opie Player I" |
109 | string "The sound fragment used in Opie Player I" |
111 | default "14" if TARGET_IPAQ |
110 | default "14" if TARGET_IPAQ |
112 | default "16" if (!TARGET_IPAQ) |
111 | default "16" if (!TARGET_IPAQ) |
113 | |
112 | |
114 | config USE_REALTIME_AUDIO_THREAD |
113 | config USE_REALTIME_AUDIO_THREAD |
115 | boolean "Use a realtime thread in Opie Player I" |
114 | boolean "Use a realtime thread in Opie Player I" |
116 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
115 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
117 | default n |
116 | default n |
118 | |
117 | |
119 | config QT_QWS_ALLOW_OVERCLOCK |
118 | config QT_QWS_ALLOW_OVERCLOCK |
120 | boolean "Allow the user to overclock the device" |
119 | boolean "Allow the user to overclock the device" |
121 | depends TARGET_RAMSES |
120 | depends TARGET_RAMSES |
122 | default n |
121 | default n |
123 | |
122 | |
124 | config OPIE_HIGH_RES_SMALL_PHY |
123 | config OPIE_HIGH_RES_SMALL_PHY |
125 | boolean "Resolution is bigger than physical scrren" |
124 | boolean "Resolution is bigger than physical screen" |
126 | default y if TARGET_C700 |
125 | default y if TARGET_C700 |
127 | default n |
126 | default n |
128 | |
127 | |
129 | config OPIE_NEW_ALLOC |
128 | config OPIE_NEW_ALLOC |
130 | boolean "Use malloc and free for the implementation" |
129 | boolean "Use malloc and free for the implementation" |
131 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
130 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
132 | default n |
131 | default n |
133 | |
132 | |
134 | config OPIE_NO_SOUND_PCM_READ_BITS |
133 | config OPIE_NO_SOUND_PCM_READ_BITS |
135 | boolean "there is not a pcm_read_bits io control" |
134 | boolean "There is not a pcm_read_bits io control" |
136 | default y if TARGET_SHARP |
135 | default y if TARGET_SHARP |
137 | default n |
136 | default n |
138 | |
137 | |
| |
138 | config OPIE_WE_VERSION |
| |
139 | string "The wireless extension (WE) version to build against" |
| |
140 | default "15" if ! TARGET_X86 |
| |
141 | default "16" if TAGET_X86 |
| |
142 | |
139 | endmenu |
143 | endmenu |
140 | |
144 | |
141 | menu "Base" |
145 | menu "Base" |
142 | choice |
146 | choice |
143 | prompt "Qpe Library Selection" |
147 | prompt "Qpe Library Selection" |
144 | default LIBQPE |
148 | default LIBQPE |
145 | source library/config.in |
149 | source library/config.in |
146 | source x11/config.in |
150 | source x11/config.in |
147 | endchoice |
151 | endchoice |
148 | source libopie/config.in |
152 | source libopie/config.in |
149 | source core/opie-login/config.in |
153 | source core/opie-login/config.in |
150 | source core/opiealarm/config.in |
154 | source core/opiealarm/config.in |
151 | source core/tools/quicklauncher/config.in |
155 | source core/tools/quicklauncher/config.in |
152 | source core/launcher/config.in |
156 | source core/launcher/config.in |
153 | source core/qws/config.in |
157 | source core/qws/config.in |
154 | endmenu |
158 | endmenu |
155 | |
159 | |
156 | comment "" |
160 | comment "" |
157 | |
161 | |
158 | menu "Applets" |
162 | menu "Applets" |
159 | source core/applets/config.in |
163 | source core/applets/config.in |
160 | source noncore/applets/config.in |
164 | source noncore/applets/config.in |
161 | endmenu |
165 | endmenu |
162 | |
166 | |
163 | menu "Apps" |
167 | menu "Apps" |
164 | source core/apps/config.in |
168 | source core/apps/config.in |
165 | source noncore/apps/config.in |
169 | source noncore/apps/config.in |
166 | endmenu |
170 | endmenu |
167 | |
171 | |
168 | menu "Communications and Networking" |
172 | menu "Communications and Networking" |
169 | source noncore/comm/config.in |
173 | source noncore/comm/config.in |
170 | source noncore/net/config.in |
174 | source noncore/net/config.in |
|