]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/services/gfx/mw/v2_0/src/Configs/config.ipaq
Initial revision
[karo-tx-redboot.git] / packages / services / gfx / mw / v2_0 / src / Configs / config.ipaq
1 ####################################################################
2 # Microwindows and Nano-X configuration file
3 #
4 # This package can be configured to run on Linux (MIPS, ARM, x86)
5 # UNIX, ELKS, DJGPP, or RTEMS.
6 # On Linux, we've got drivers for Linux 2.x framebuffers, X11, or,
7 # svgalib for VGA hardware.
8 # In addition, a gpm or direct serial mouse driver can be configured.
9 # On ELKS, the bios screen driver and serial mouse driver are always used.
10 #
11 # Either Microwindows and/or Nano-X can be built.
12 # Microwindows and Nano-X have several demos.
13 #
14 # For MSDOS makes, see mcmwin.mak and mcnanox.mak
15 ####################################################################
16
17 ####################################################################
18 #
19 # build target platform
20 #
21 # Valid ARCH values are:
22 #
23 # LINUX-NATIVE
24 # LINUX-ARM
25 # LINUX-MIPS
26 # SOLARIS
27 # RTEMS
28 # DJGPP
29 # ELKS
30 #
31 # note: ELKS can't build client/server nano-X, nor widget lib
32 #
33 ####################################################################
34 ARCH                     = LINUX-ARM
35 ARMTOOLSPREFIX           = arm-linux-
36 MIPSTOOLSPREFIX          = mipsel-linux-
37 RTEMSTOOLSPREFIX         = i386-rtemself-
38
39 ####################################################################
40 #
41 # Compiling options
42 #
43 ####################################################################
44 OPTIMIZE                 = Y
45 DEBUG                    = N
46 VERBOSE                  = N
47
48 ####################################################################
49 #
50 # Libraries to build: microwin, nano-X, nanowidget, object frameworks
51 #
52 ####################################################################
53 MICROWIN                 = Y
54 NANOX                    = Y
55 SHAREDLIBS               = N
56 NWIDGET                  = N
57 OBJFRAMEWORK             = N
58
59
60 ####################################################################
61 #
62 # Demos to build
63 #
64 ####################################################################
65 MICROWINDEMO             = Y
66 NANOXDEMO                = Y
67
68 ####################################################################
69 #
70 # Applications to build
71 #
72 ####################################################################
73 NANOWM                   = Y
74
75 ####################################################################
76 #
77 # The pixeltype of the native hardware or underlying graphics library.
78 # This definition defines the PIXELVAL to be 32, 16 or 8 bits wide.
79 # If using Linux framebuffer, set to MWPF_TRUECOLOR0888, and use fbset.
80 # It also enables GdArea/GrArea for this particular pixel packing format.
81 #
82 # define MWPF_PALETTE       /* pixel is packed 8 bits 1, 4 or 8 pal index*/
83 # define MWPF_TRUECOLOR0888 /* pixel is packed 32 bits 8/8/8 truecolor*/
84 # define MWPF_TRUECOLOR888  /* pixel is packed 24 bits 8/8/8 truecolor*/
85 # define MWPF_TRUECOLOR565  /* pixel is packed 16 bits 5/6/5 truecolor*/
86 # define MWPF_TRUECOLOR332  /* pixel is packed 8 bits 3/3/2 truecolor*/
87 #
88 ####################################################################
89 SCREEN_PIXTYPE           = MWPF_TRUECOLOR0888
90
91 ####################################################################
92 #
93 # NanoX: Put Y to the following line to link the nano-X application
94 # with the server.  This is required for ELKS, if no network is present,
95 # or for speed or debugging.  This affects the nano-X server only.
96 #
97 ####################################################################
98 LINK_APP_INTO_SERVER     = N
99
100 ####################################################################
101 #
102 # File I/O support
103 # Supporting either below drags in libc stdio, which may not be wanted
104 #
105 ####################################################################
106 HAVE_FILEIO              = Y
107
108 ####################################################################
109 # BMP, GIF reading support
110 ####################################################################
111 HAVE_BMP_SUPPORT         = Y
112 HAVE_GIF_SUPPORT         = Y
113 HAVE_PNM_SUPPORT         = Y
114 HAVE_XPM_SUPORT          = Y
115
116 ####################################################################
117 # JPEG support through libjpeg, see README.txt in contrib/jpeg
118 ####################################################################
119 HAVE_JPEG_SUPPORT        = Y
120 INCJPEG                  = .
121 LIBJPEG                  = /skiff/local/arm-linux/lib/libjpeg.a
122
123 ####################################################################
124 # PNG support via libpng and libz
125 ####################################################################
126 HAVE_PNG_SUPPORT         = N
127 INCPNG                   = .
128 LIBPNG                   = /usr/lib/libpng.a
129 LIBZ                     = /usr/lib/libz.a
130
131 ####################################################################
132 # T1 adobe type1 font support thru t1lib
133 ####################################################################
134 HAVE_T1LIB_SUPPORT       = N
135 INCT1LIB                 = /usr/include
136 LIBT1LIB                 = /usr/lib/libt1.a
137
138 ####################################################################
139 # TrueType font support thru FreeType
140 ####################################################################
141 HAVE_FREETYPE_SUPPORT    = N
142 INCFTLIB                 = /usr/include
143 LIBFTLIB                 = /usr/lib/libttf.so
144
145 ####################################################################
146 # Shared memory support for Nano-X client/server protocol speedup
147 ####################################################################
148 HAVE_SHAREDMEM_SUPPORT   = N
149
150 ####################################################################
151 # Chinese Han Zi Ku font support
152 ####################################################################
153 HAVE_HZK_SUPPORT         = N
154 HZK_FONT_DIR             = "fonts/chinese"
155
156 ####################################################################
157 # Chinese GB2312 compiled in font support (gb2312font.c)
158 ####################################################################
159 HAVE_GB2312_SUPPORT      = N
160
161 ####################################################################
162 #
163 # Window move algorithms for Microwindows
164 # Change for tradeoff between cpu speed and looks
165 # ERASEMOVE repaints only backgrounds while window dragging, quicker.
166 # Otherwise an XOR redraw is used for window moves only after button up,
167 # quickest (should set for ELKS)
168 # UPDATEREGIONS paints in update clipping region only for better look and feel
169 #
170 ####################################################################
171 ERASEMOVE                = Y
172 UPDATEREGIONS            = Y
173
174 ####################################################################
175 #
176 # Use MS fonts (default no)
177 #
178 ####################################################################
179 HAVEMSFONTS              = N
180
181 ####################################################################
182 #
183 # Link with Gray Palette (valid only for 4bpp modes)
184 #
185 ####################################################################
186 GRAYPALETTE              = N
187
188 ####################################################################
189 #
190 # If the platform is running UNIX, Linux or RTEMS...
191 #
192 ####################################################################
193 ifneq ($(ARCH), ELKS)
194
195 # X Window screen, mouse and kbd drivers
196 X11                      = N
197
198 ifeq ($(X11), Y)
199 # predefined model or select screen width, height, depth(palette mode only)
200 SCREEN_E15               = N
201 SCREEN_WIDTH             = 640
202 SCREEN_HEIGHT            = 480
203 SCREEN_DEPTH             = 4
204
205 else
206
207 # framebuffer screen driver (linear and/or vga 4 planes)
208 # set VTSWITCH to include virtual terminal switch code
209 # set PORTRAIT_MODE to L or R for left or right orientation
210 FRAMEBUFFER              = Y
211 FBVGA                    = N
212 VTSWITCH                 = N
213 PORTRAIT_MODE            = R
214
215 # svgalib screen driver
216 VGALIB                   = N
217
218 # direct VGA hardware access screen driver
219 HWVGA                    = N
220
221 ####################################################################
222 # Mouse or touch screen driver
223 # TPMOUSE for Linux-VR and Embedded Planet
224 # ADSMOUSE for ADS Graphics Client
225 # IPAQMOUSE for Compaq iPAQ and Intel Assabet (/dev/h3600_ts 11,0)
226 ####################################################################
227 GPMMOUSE                 = N
228 SERMOUSE                 = N
229 TPMOUSE                  = N
230 ADSMOUSE                 = N
231 IPAQMOUSE                = Y
232 NOMOUSE                  = N
233
234 # keyboard or null kbd driver
235 TTYKBD                   = N
236 NOKBD                    = Y
237
238 endif
239
240 ####################################################################
241 #
242 # If the platform is a LINUX-ARM box ....
243 #
244 ####################################################################
245 ifeq ($(ARCH), LINUX-ARM)
246
247 # If 4bpp driver with arm SA1100 LCD controller is used ...
248 SA1100_LCD_LTLEND        = N
249
250 endif
251
252
253 ####################################################################
254 #
255 # If the platform is a RTEMS box ....
256 #
257 ####################################################################
258 ifeq ($(ARCH), RTEMS)
259
260 # Location & BSP information of the RTEMS build
261 RTEMS_BUILD              = /tools/build-i386-elf-rtems
262 RTEMS_BSP                = pc386
263 LINK_APP_INTO_SERVER     = Y
264
265 endif
266
267 endif
268
269 ####################################################################
270 #
271 # If the platform is an ELKS box ...
272 #
273 ####################################################################
274 ifeq ($(ARCH), ELKS)
275
276 # Higher speed asm driver, c driver of hercules screen driver
277 ASMVGADRIVER             = Y
278 CVGADRIVER               = N
279 HERCDRIVER               = N
280 DBGDRIVER                = N
281
282 # Mouse support
283 SERMOUSE                 = Y
284
285 endif