author | zecke <zecke> | 2003-08-27 12:24:03 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-08-27 12:24:03 (UTC) |
commit | 6a6af694205eb9a55b18eb10f2290a9747019388 (patch) (side-by-side diff) | |
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
@@ -8,64 +8,68 @@ choice help Please select the architecture of the machine you will be building the OpenZaurus buildroot for. config TARGET_X86 boolean "Intel X86" config TARGET_SHARP boolean "Sharp Zaurus" config TARGET_IPAQ boolean "iPAQ" config TARGET_RAMSES boolean "Ramses" config TARGET_SIMPAD boolean "SIMpad" endchoice config OPTIMIZE boolean "Use optimizations" default "y" if ! TARGET_X86 config DEBUG boolean "Enable debug builds" default n config RELEASE bool default y depends !DEBUG + +config QUICK_LAUNCH + boolean "Enable Quick Launch" + default n config SPECFILE string default "qws/linux-generic-g++" if TARGET_X86 && (! X11) default "linux-g++" if TARGET_X86 && X11 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) default "linux-g++" if TARGET_SHARP && X11 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) default "linux-g++" if TARGET_IPAQ && X11 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) default "linux-g++" if TARGET_RAMSES && X11 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) default "linux-g++" if TARGET_SIMPAD && X11 config CUSTOMFILE string default "custom-ipaq.h" if TARGET_IPAQ default "custom-sharp.h" if TARGET_SHARP default "custom-ramses.h" if TARGET_RAMSES default "custom-ipaq.h" if TARGET_SIMPAD config OPTIMIZATIONS string "Optimization flags" depends OPTIMIZE default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD config EXPERIMENTAL bool "Prompt for development and/or incomplete items" default y |