author | zecke <zecke> | 2003-08-27 12:24:03 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-08-27 12:24:03 (UTC) |
commit | 6a6af694205eb9a55b18eb10f2290a9747019388 (patch) (unidiff) | |
tree | e930a44ea8b32720a9611bbfd59a71b83bb7e606 /config.in | |
parent | 151c319a9a67ae420136fb23cc987d23059737f6 (diff) | |
download | opie-6a6af694205eb9a55b18eb10f2290a9747019388.zip opie-6a6af694205eb9a55b18eb10f2290a9747019388.tar.gz opie-6a6af694205eb9a55b18eb10f2290a9747019388.tar.bz2 |
If you add quick-app to the CONFIG options
it'll use the global quick app setting to either
be a lib or normal executable
-rw-r--r-- | config.in | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,135 +1,139 @@ | |||
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_SHARP | 15 | config TARGET_SHARP |
16 | boolean "Sharp Zaurus" | 16 | boolean "Sharp Zaurus" |
17 | 17 | ||
18 | config TARGET_IPAQ | 18 | config TARGET_IPAQ |
19 | boolean "iPAQ" | 19 | boolean "iPAQ" |
20 | 20 | ||
21 | config TARGET_RAMSES | 21 | config TARGET_RAMSES |
22 | boolean "Ramses" | 22 | boolean "Ramses" |
23 | 23 | ||
24 | config TARGET_SIMPAD | 24 | config TARGET_SIMPAD |
25 | boolean "SIMpad" | 25 | boolean "SIMpad" |
26 | 26 | ||
27 | endchoice | 27 | endchoice |
28 | 28 | ||
29 | config OPTIMIZE | 29 | config OPTIMIZE |
30 | boolean "Use optimizations" | 30 | boolean "Use optimizations" |
31 | default "y" if ! TARGET_X86 | 31 | default "y" if ! TARGET_X86 |
32 | 32 | ||
33 | config DEBUG | 33 | config DEBUG |
34 | boolean "Enable debug builds" | 34 | boolean "Enable debug builds" |
35 | default n | 35 | default n |
36 | config RELEASE | 36 | config RELEASE |
37 | bool | 37 | bool |
38 | default y | 38 | default y |
39 | depends !DEBUG | 39 | depends !DEBUG |
40 | |||
41 | config QUICK_LAUNCH | ||
42 | boolean "Enable Quick Launch" | ||
43 | default n | ||
40 | 44 | ||
41 | config SPECFILE | 45 | config SPECFILE |
42 | string | 46 | string |
43 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) | 47 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
44 | default "linux-g++" if TARGET_X86 && X11 | 48 | default "linux-g++" if TARGET_X86 && X11 |
45 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | 49 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
46 | default "linux-g++" if TARGET_SHARP && X11 | 50 | default "linux-g++" if TARGET_SHARP && X11 |
47 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) | 51 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
48 | default "linux-g++" if TARGET_IPAQ && X11 | 52 | default "linux-g++" if TARGET_IPAQ && X11 |
49 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) | 53 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
50 | default "linux-g++" if TARGET_RAMSES && X11 | 54 | default "linux-g++" if TARGET_RAMSES && X11 |
51 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) | 55 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
52 | default "linux-g++" if TARGET_SIMPAD && X11 | 56 | default "linux-g++" if TARGET_SIMPAD && X11 |
53 | 57 | ||
54 | config CUSTOMFILE | 58 | config CUSTOMFILE |
55 | string | 59 | string |
56 | default "custom-ipaq.h" if TARGET_IPAQ | 60 | default "custom-ipaq.h" if TARGET_IPAQ |
57 | default "custom-sharp.h" if TARGET_SHARP | 61 | default "custom-sharp.h" if TARGET_SHARP |
58 | default "custom-ramses.h" if TARGET_RAMSES | 62 | default "custom-ramses.h" if TARGET_RAMSES |
59 | default "custom-ipaq.h" if TARGET_SIMPAD | 63 | default "custom-ipaq.h" if TARGET_SIMPAD |
60 | 64 | ||
61 | config OPTIMIZATIONS | 65 | config OPTIMIZATIONS |
62 | string "Optimization flags" | 66 | string "Optimization flags" |
63 | depends OPTIMIZE | 67 | depends OPTIMIZE |
64 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ | 68 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
65 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP | 69 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
66 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES | 70 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
67 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD | 71 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
68 | 72 | ||
69 | config EXPERIMENTAL | 73 | config EXPERIMENTAL |
70 | bool "Prompt for development and/or incomplete items" | 74 | bool "Prompt for development and/or incomplete items" |
71 | default y | 75 | default y |
72 | 76 | ||
73 | endmenu | 77 | endmenu |
74 | 78 | ||
75 | menu "Base" | 79 | menu "Base" |
76 | choice | 80 | choice |
77 | prompt "Qpe Library Selection" | 81 | prompt "Qpe Library Selection" |
78 | default LIBQPE | 82 | default LIBQPE |
79 | source library/config.in | 83 | source library/config.in |
80 | source x11/config.in | 84 | source x11/config.in |
81 | endchoice | 85 | endchoice |
82 | source libopie/config.in | 86 | source libopie/config.in |
83 | source core/opie-login/config.in | 87 | source core/opie-login/config.in |
84 | source core/opiealarm/config.in | 88 | source core/opiealarm/config.in |
85 | source core/launcher/config.in | 89 | source core/launcher/config.in |
86 | source core/qws/config.in | 90 | source core/qws/config.in |
87 | endmenu | 91 | endmenu |
88 | 92 | ||
89 | comment "" | 93 | comment "" |
90 | 94 | ||
91 | menu "Applets" | 95 | menu "Applets" |
92 | source core/applets/config.in | 96 | source core/applets/config.in |
93 | source noncore/applets/config.in | 97 | source noncore/applets/config.in |
94 | endmenu | 98 | endmenu |
95 | 99 | ||
96 | menu "Apps" | 100 | menu "Apps" |
97 | source core/apps/config.in | 101 | source core/apps/config.in |
98 | source noncore/apps/config.in | 102 | source noncore/apps/config.in |
99 | endmenu | 103 | endmenu |
100 | 104 | ||
101 | menu "Communications and Networking" | 105 | menu "Communications and Networking" |
102 | source noncore/comm/config.in | 106 | source noncore/comm/config.in |
103 | source noncore/mail/config.in | 107 | source noncore/mail/config.in |
104 | source noncore/net/config.in | 108 | source noncore/net/config.in |
105 | endmenu | 109 | endmenu |
106 | 110 | ||
107 | menu "Games" | 111 | menu "Games" |
108 | source noncore/games/config.in | 112 | source noncore/games/config.in |
109 | endmenu | 113 | endmenu |
110 | 114 | ||
111 | menu "Graphics and Multimedia" | 115 | menu "Graphics and Multimedia" |
112 | source freetype/config.in | 116 | source freetype/config.in |
113 | source noncore/graphics/config.in | 117 | source noncore/graphics/config.in |
114 | source core/multimedia/config.in | 118 | source core/multimedia/config.in |
115 | source noncore/multimedia/config.in | 119 | source noncore/multimedia/config.in |
116 | endmenu | 120 | endmenu |
117 | 121 | ||
118 | menu "Input methods" | 122 | menu "Input methods" |
119 | source inputmethods/config.in | 123 | source inputmethods/config.in |
120 | endmenu | 124 | endmenu |
121 | 125 | ||
122 | menu "Pim" | 126 | menu "Pim" |
123 | source core/pim/config.in | 127 | source core/pim/config.in |
124 | menu "Today Plugins" | 128 | menu "Today Plugins" |
125 | source noncore/todayplugins/config.in | 129 | source noncore/todayplugins/config.in |
126 | source core/pim/today/plugins/config.in | 130 | source core/pim/today/plugins/config.in |
127 | endmenu | 131 | endmenu |
128 | endmenu | 132 | endmenu |
129 | 133 | ||
130 | menu "Settings" | 134 | menu "Settings" |
131 | source core/settings/config.in | 135 | source core/settings/config.in |
132 | source noncore/settings/config.in | 136 | source noncore/settings/config.in |
133 | endmenu | 137 | endmenu |
134 | 138 | ||
135 | menu "Theming" | 139 | menu "Theming" |