summaryrefslogtreecommitdiff
path: root/config.in
authorzecke <zecke>2003-08-27 12:24:03 (UTC)
committer zecke <zecke>2003-08-27 12:24:03 (UTC)
commit6a6af694205eb9a55b18eb10f2290a9747019388 (patch) (unidiff)
treee930a44ea8b32720a9611bbfd59a71b83bb7e606 /config.in
parent151c319a9a67ae420136fb23cc987d23059737f6 (diff)
downloadopie-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
Diffstat (limited to 'config.in') (more/less context) (ignore whitespace changes)
-rw-r--r--config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.in b/config.in
index aa6a0d4..c6ee7a6 100644
--- a/config.in
+++ b/config.in
@@ -1,135 +1,139 @@
1mainmenu "Opie Configuration" 1mainmenu "Opie Configuration"
2 2
3menu "Build Parameters" 3menu "Build Parameters"
4 4
5choice 5choice
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
27endchoice 27endchoice
28 28
29config OPTIMIZE 29config OPTIMIZE
30 boolean "Use optimizations" 30 boolean "Use optimizations"
31 default "y" if ! TARGET_X86 31 default "y" if ! TARGET_X86
32 32
33config DEBUG 33config DEBUG
34 boolean "Enable debug builds" 34 boolean "Enable debug builds"
35 default n 35 default n
36config RELEASE 36config RELEASE
37 bool 37 bool
38 default y 38 default y
39 depends !DEBUG 39 depends !DEBUG
40
41config QUICK_LAUNCH
42 boolean "Enable Quick Launch"
43 default n
40 44
41config SPECFILE 45config 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
54config CUSTOMFILE 58config 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
61config OPTIMIZATIONS 65config 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
69config EXPERIMENTAL 73config 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
73endmenu 77endmenu
74 78
75menu "Base" 79menu "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
87endmenu 91endmenu
88 92
89comment "" 93comment ""
90 94
91menu "Applets" 95menu "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
94endmenu 98endmenu
95 99
96menu "Apps" 100menu "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
99endmenu 103endmenu
100 104
101menu "Communications and Networking" 105menu "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
105endmenu 109endmenu
106 110
107menu "Games" 111menu "Games"
108 source noncore/games/config.in 112 source noncore/games/config.in
109endmenu 113endmenu
110 114
111menu "Graphics and Multimedia" 115menu "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
116endmenu 120endmenu
117 121
118menu "Input methods" 122menu "Input methods"
119 source inputmethods/config.in 123 source inputmethods/config.in
120endmenu 124endmenu
121 125
122menu "Pim" 126menu "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
128endmenu 132endmenu
129 133
130menu "Settings" 134menu "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
133endmenu 137endmenu
134 138
135menu "Theming" 139menu "Theming"