]> rtime.felk.cvut.cz Git - omk/sssa.git/blob - doc/omk-manual.texinfo
Fixed QT compilation from subdirectory and documented QT_SUBDIRS variable
[omk/sssa.git] / doc / omk-manual.texinfo
1 \input texinfo   @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename omk-manual
4 @settitle OMK: Ocera Make System
5 @c %**end of header
6
7 @copying
8 Manual for Ocera Make System (OMK)
9
10 Copyright @copyright{} 2007 Michal Sojka, Pavel Pisa
11 @end copying
12
13 @titlepage
14 @title Ocera Make System Manual
15 @page
16 @vskip 0pt plus 1filll
17 @insertcopying
18 @end titlepage
19
20 @contents
21
22 @ifnottex
23 @node Top, Overview of OMK, (dir), (dir)
24 @top Ocera Make System
25
26 @insertcopying
27 @end ifnottex
28
29
30 @menu
31 * Overview of OMK::             
32 * OMK User's Manual::           
33 * Original README::             
34 * OMK Development::             
35 * Variable Index::              
36 @end menu
37
38 @node Overview of OMK, OMK User's Manual, Top, Top
39 @chapter OMK Overview
40 @cindex overview
41
42 OMK is an advanced make system written entirely in GNU make. Compiling
43 software using OMK requires only GNU make binary and standard UNIX
44 utilities (@command{sh}, @command{sed}, @command{cmp} and
45 @command{tr}@footnote{@command{tr} is needed only for OMK to be
46 compatible with MinGW.}) installed. OMK aims to be developer friendly;
47 to use OMK, you do not need to understand (sometimes) cryptic syntax of
48 Makefiles.
49
50 You can use OMK on all platforms where you can run GNU Make including
51 Cygwin and MinGW. MS DOS was not tested.
52
53 @c @section Features
54
55 @c @itemize
56 @c @item
57 @c Easy to use for beginners.
58 @c @item
59 @c Automatic handling of dependencies.
60 @c @item
61 @c Supported host platforms: all Un*x operating system including Linux,
62 @c Cygwin, MS DOS and maybe others.
63 @c @end itemize
64
65 @menu
66 * Why to Use OMK?::             
67 * Quick Start::                 
68 * History::                     
69 @end menu
70
71 @node Why to Use OMK?, Quick Start, Overview of OMK, Overview of OMK
72 @section Why to Use OMK?
73
74 Here we list some of OMK features, which we think are important for
75 choosing of a make system.
76
77
78 @itemize
79 @item
80   Makefile in source directories are usually very @b{simple}.
81 @item
82   There is only @b{one} @file{Makefile.rules} for most of components of
83   a bigger project.
84 @item
85   OMK greatly simplifies compilation of projects, where source files are
86   spread between @b{multiple directories}.
87 @item
88   OMK handles properly @b{dependencies} of source files and libraries,
89   so it is not necessary to recompile the whole project if only several
90   files changed.
91 @item
92   OMK allows to freely @b{move} cross-dependant components @b{in
93   directory structure} without the need to update users of moved
94   component. I hate something like
95   @option{-I../../sched/rtlshwq/include} in makefiles for example. If a
96   component is renamed or version is added to the name, many Makefiles
97   in the project would require an update.
98 @item
99   The above feature is very helpful in @b{combining components}
100   (libraries) from different projects/developers to a single project by
101   simply creating symbolic links to external components.
102 @item
103   Compilation of an OMK based projects don't require to install any
104   files before successful finish of build.
105 @item
106   OMK allows to call @command{make} for a particular subdirectory in the
107   source tree.
108 @item
109   Under OMK all products of compilation are stored @b{out of source
110   directories}. This simplifies work with version control systems and
111   helps when simultaneous compilation for multiple targets/platforms is
112   needed.
113 @end itemize
114
115
116 @node Quick Start, History, Why to Use OMK?, Overview of OMK
117 @section Quick Start
118
119 If you get some sources, which are distributed with OMK, usually the
120 following commands are sufficient to compile the whole project.
121
122 @example
123 @verbatim
124 make default-config
125 make
126 @end verbatim
127 @end example
128
129 @noindent To use OMK in your own project, follow these steps:
130
131 @enumerate
132 @item
133   Take appropriate @file{Makefile.rules}, put it together with leaf
134   @file{Makefile} to the root directory of your project.
135 @item
136   Create @file{Makefile.omk} files in all directories you want to
137   compile something. Please refer to @ref{OMK User's Manual} to learn
138   what to write in @file{Makefile.omk} files.
139 @item
140   Run @command{make omkize} in the root directory.
141 @end enumerate
142
143 @noindent Your project is now ready to compile.
144
145
146 @node History,  , Quick Start, Overview of OMK
147 @section History
148
149 OMK was originally written by Pavel Pisa as a solution to have one
150 common make system for OCERA project, where we needed to compile
151 user-space programs, Linux kernel modules and RT Linux modules in one
152 package. Although this system was not accepted for the whole OCERA
153 project. Several individual developers (mostly from Czech Technical
154 University) liked it and started to use it.
155
156 As a number of projects using OMK grew it was necessary to modularize
157 the make system to support more ``targets''. Michal Sojka took care
158 about the process of modularization.
159
160 @node OMK User's Manual, Original README, Overview of OMK, Top
161 @chapter OMK User's Manual
162
163 @menu
164 * Basic Concepts::              
165 * Invoking OMK::                
166 * Compiling Programs::          
167 * Libraries::                   
168 * Multiple Directories::        
169 * Dependency Tracking::         
170 * Configuration and Conditional Compilation::  
171 * Advanced OMK Features::       
172 * Properties of Specific Makefile.rules::  
173 * Running OMK under Windows OS::  
174 * Interfacing OMK to popular IDEs::  
175 * Troubleshooting::             
176 @end menu
177
178 @node Basic Concepts, Invoking OMK, OMK User's Manual, OMK User's Manual
179 @section Basic Concepts
180
181 The main concept of OMK is very simple. In the root directory of the
182 projects resides a file called @file{Makefile.rules}. This file contains
183 all compilation rules needed for compilation of a particular
184 project. There are different @file{Makefile.rules} for different
185 platforms (Unix, RTEMS, system-less, ...). In every subdirectory a
186 @file{Makefile.omk} is stored. This file determines what should be done
187 in the respective directory (e.g. compile a program from several source
188 files). Its syntax is very simple -- see the following sections.
189
190 Since make searches by default for a @file{Makefile} and not for
191 @file{Makefile.rules} or @file{Makefile.omk}, there must be a small
192 generic @file{Makefile} in every directory, whose task is only to find
193 @file{Makefile.rules} in the actual or any parent directory and include
194 it. This search is performed only once at the beginning of compilation.
195
196 @c TODO: Pavel's note about qmake.
197
198 @anchor{passes}
199 The compilation process itself is comprised of several @emph{passes}. Every
200 pass traverses the whole directory structure@footnote{In future, we are
201 planning some optimization that allows OMK to traverse the directories
202 only once and thus decrease compilation time.} and does a particular
203 task in every directory of the project. Typically, these passes are:
204 @table @dfn
205 @anchor{include-pass}
206 @item include-pass
207     This pass takes all include files marked for ``export'' and copies
208     (or links) them to the @file{include} directory under
209     @file{_compiled} directory. @xref{Header Files}.
210
211     Also, during this pass, automatically generated header file are
212     generated according to the current
213     configuration. @xref{Configuration and Conditional Compilation}.
214 @item library-pass
215     During this pass, all include files are in place, so all libraries
216     can be compiled.
217 @item binary-pass
218     Finally, programs can be compiled and linked against libraries
219     created in the previous pass.
220 @end table
221
222 The results of compilation are stored under the @file{_compiled}
223 directory. This directory is structured as a classical Unix file-system
224 (it contains directories like @file{bin}, @file{lib} and @file{include})
225 and can be directly copied to the target device or to some directory on
226 a host computer (e.g. @file{/usr/local}).
227
228 Besides @file{_compiled} directory, there in a @file{_build}
229 directory. Under this directory are stored some temporary files and
230 intermediate compilation products (object files, dependency files etc.).
231
232 In the next section, we provide an overview of methods, how to invoke
233 OMK from command line. Section @ref{Interfacing OMK to popular IDEs}
234 covers running of OMK from popular IDEs.
235
236 Sections @ref{Compiling Programs} through @ref{Configuration and
237 Conditional Compilation} deals with the content of
238 @file{Makefile.omk}. Its syntax in usual cases compatible to GNU
239 Automake's @file{Makefile.am} syntax. Also, the scheme for naming
240 variables was inspired by Automake so most OMK variables have the name
241 like @samp{@var{target}_@var{TYPE}}.
242
243 @node Invoking OMK, Compiling Programs, Basic Concepts, OMK User's Manual
244 @section Invoking OMK
245
246 Before using OMK for the first time, you have to call:
247 @example
248 @command{make default-config}
249 @end example
250 @noindent See @ref{Configuration and Conditional Compilation} for
251 details. If you forget to do this, OMK will notice you.
252
253 To compile the whole project or only some subtree of the project, call
254 @example
255 @command{make}
256 @end example
257 @noindent in the appropriate directory.
258
259 To clean files in @file{_build} directory but not in @file{_compiled}
260 one, use:
261 @example
262 @command{make clean}
263 @end example
264
265 To clean the compilation completely, you can either remove
266 @file{_compiled} and @file{_build} directories manually, or call
267 @example
268 @command{make distclean}
269 @end example
270 @noindent which does the same. This command removes these directories
271 even if you call it from a subdirectory.
272
273 To debug compilation problems, you can use @code{V} variable (see
274 @ref{V}):
275 @example
276 @command{make V=1}
277 @end example
278
279 You can also set values of some other variables on command line for
280 temporary change something. The example below compiles the code
281 temporarily with debugging information:
282 @example
283 @command{make CFLAGS="-g -O0 -Wall"}
284 @end example
285
286 If your project uses an alternative make-system (e.g. Automake or custom
287 makefiles), it might be useful for you to use the command:
288 @example
289 @command{make omkize}
290 @end example
291 @noindent This will find all @file{Makefile.omk} files in all subdirectories
292 and copies generic @file{Makefile} from the root directory to that
293 subdirectories. This way you can easily switch your project to use OMK.
294
295
296
297 @anchor{V}
298 @defvar V
299 If this variable equals to @samp{1}, the whole command lines for all
300 executed commands are displayed. When not set or zero, only short
301 messages are printed. Value of @samp{2} displays the whole command lines
302 as with @samp{1} and in addition directory navigation messages are
303 printed.
304 @end defvar
305
306 @node Compiling Programs, Libraries, Invoking OMK, OMK User's Manual
307 @section Compiling Programs
308
309 To tell OMK to compile a program, you need to set some variables in
310 @file{Makefile.omk} (usually) in the directory where program sources are
311 located.
312
313 In the example bellow a program @command{test} will be compiled from
314 source @file{test.c}.
315
316 @example
317 @verbatiminclude ../tests/programs/Makefile.omk
318 @end example
319
320 @noindent The variables are:
321
322 @anchor{bin_PROGRAMS}
323 @defvar bin_PROGRAMS
324   Contains a list of names (whitespace separated) of programs to be
325   compiled in this directory.
326 @end defvar
327
328 @defvar test_PROGRAMS
329   Almost the same as @ref{bin_PROGRAMS}, but resulting binaries are
330   stored in @file{bin-tests} directory instead of @file{bin}. This
331   variable is intended for various test programs not to be mixed with
332   the final product.
333 @end defvar
334
335 @defvar utils_PROGRAMS
336   Almost the same as @ref{bin_PROGRAMS}, but resulting binaries are
337   stored in @file{bin-utils} directory instead of @file{bin}. This
338   variable is intended for various development utilities not to be mixed
339   with the final product.
340 @end defvar
341
342 @defvar xxx_SOURCES
343   For every program name @var{xxx} in @code{bin_PROGRAMS},
344   @code{test_PROGRAMS} or @code{utils_PROGRAMS}, this variable contains
345   a list of sources that are needed to compile the program. OMK uses an
346   extension of the filename to determine the compiler to compile this
347   source.
348 @end defvar
349
350 @defvar xxx_LIBS
351   This variable contains a list of libraries the program @var{xxx} will
352   be linked with.
353
354   @example
355   test_LIBS = m curses
356   @end example
357 @end defvar
358
359 @defvar LOADLIBES
360   This variable contains a list of libraries all programs in this
361   directory needs to be linked to.
362 @end defvar
363
364 @defvar INCLUDES
365   Directives passed to the C or C++ compiler with additional directories
366   to be searched for header files. In most cases you need to specify an
367   absolute path. To specify a directory relative to the source
368   directory, you can use the @code{$(SOURCES_DIR)} variable, which
369   refers to the directory, where @file{Makefile.omk} is located. This
370   variable applies to all compilations invoked in the current directory.
371
372   @example
373   INCLUDES = -I$(SOURCES_DIR)/my_include_dir
374   @end example
375 @end defvar
376
377 @defvar DEFS
378   Directives passed to the C or C++ compiler with preprocessor macro
379   definitions. This variable applies to all compilations invoked in the
380   current directory.
381
382   @example
383   DEFS = -DDEBUG=1
384   @end example
385 @end defvar
386
387
388 @c FIXME: INCLUDES variable should not be set by rtlinux rules.
389
390 @node Libraries, Multiple Directories, Compiling Programs, OMK User's Manual
391 @section Libraries
392
393
394 With OMK, you can easily create statically or dynamically linked
395 libraries. The way of creating libraries is very similar to how programs
396 are created. @xref{Compiling Programs}.
397
398 In @file{Makefile.omk}, you specify several variables, which defines how
399 the libraries should be compiled. In the example below the library
400 @samp{mylib} (full filename will be @file{libmylib.a}) is created from
401 two sources @file{funca.c} and @file{funcb.c}. Interface of this library
402 is defined in @file{myfunc.h}. Therfore, we export this header for use
403 by other programs.
404
405 @example
406 @verbatiminclude ../tests/libraries/Makefile.omk
407 @end example
408
409 @noindent Variables for use with libraries are:
410
411 @defvar lib_LIBRARIES
412   Specifies a list of statically linked libraries to be compiled. OMK
413   automaticvally prepends @code{lib} prefix library names.
414 @end defvar
415
416 @defvar shared_LIBRARIES
417   Specifies a list of dynamically linked libraries to be compiled. 
418 @end defvar
419
420 @defvar xxx_SOURCES
421   For every library name @var{xxx} in @code{lib_LIBRARIES} or
422   @code{shared_LIBRARIES}, this variable contains a list of sources that
423   are needed to compile the library. OMK uses an extension of the
424   filename to determine the compiler to compile this source.
425 @end defvar
426
427 @menu
428 * Header Files::                
429 @end menu
430
431 @node Header Files,  , Libraries, Libraries
432 @subsection Header Files
433
434 C and C++ libraries are not very useful without header files. OMK
435 provides several variables that specify activities on header files.
436
437 During compilation, header files are copied (or linked) from source
438 directories to the @file{_compiled} tree
439 (see @ref{include-pass}). Libraries and programs are then compiled against
440 these copies.
441
442 @anchor{include_HEADERS}
443 @defvar include_HEADERS
444   Specifies the list of header files to be exported for use by other
445   libraries/programs. The files are exported directly to the
446   @file{include} directory even if the file is located in a subdirectory
447   (like @file{sci_regs.h} in the example below)
448
449   @example
450   include_HEADERS = regs.h periph/sci_regs.h
451   @end example
452 @end defvar
453
454 @defvar nobase_include_HEADERS
455   Similar to @ref{include_HEADERS}, but the directory prefix is always
456   kept. To include the file exported by this variable, use
457   @code{#include <@var{prefix}/@var{header.h}>}.
458 @end defvar
459
460 @defvar renamed_include_HEADERS
461   Exports the header files under different name. The form of the items
462   in this whitespace separated list is: @var{real name}@code{->}@var{new
463   name}.
464
465 @example 
466   renamed_include_HEADERS = orte_config_omk_win32.h->orte_config.h
467 @end example
468 @end defvar
469
470 @defvar LN_HEADERS
471   If this variable equals to @samp{y}, symbolic links to headers in
472   source directories are used in @file{_compiled} tree instead of
473   copies.
474
475   Normally, the header files are copied into @file{_compiled} directory
476   to be prepared for transfer into target location afterwards. Copying
477   ensures that resulting libraries are in correspondence with the header
478   files even if the header is changed by a developer but the library is
479   not recompiled.
480
481 @c   Another reason for having single include directory for the whole
482 @c   project is tat every component knows where to find header files of
483 @c   other components. 
484
485   On the other side, the copying could make problems during
486   development. Most @acronym{IDE}s, allows you to jump directly to the
487   place, where an error is reported by the compiler. If the error is in
488   a header file, IDE opens you the copy of the header file. If you
489   correct the error there, after the next compilation, your header file
490   will be overwritten by the old version from your source tree.
491   
492   This option is not typically used in @file{Makefile.omk}, but in the
493   top level configuration file @file{config.omk} or on command line.
494 @end defvar
495
496 @node Multiple Directories, Dependency Tracking, Libraries, OMK User's Manual
497 @section Multiple Directories
498
499 OMK is probably most useful in projects consisting of multiple
500 directories. For such projects, it is not easy to write from scratch
501 classic Makefiles that provides all the needed features.
502
503 You can instruct OMK to descend to a (sub)directory by setting the
504 @code{SUBDIRS} variable in @file{Makefile.omk}.
505
506 @defvar SUBDIRS
507   This variable contains a list of directories, in which compilation
508   must be also invoked. Usually, names of subdirectories are used, but
509   you can use any path specification here.
510
511   Compilation is invoked in these directories before it is invoked in
512   the current directory.
513 @end defvar
514 @c TODO: Write tests for this.
515
516 @defvar ALL_OMK_SUBDIRS
517   This variable is set by OMK and can be used as the value of
518   @code{SUBDIRS} variable. It contains a list of all direct
519   subdirectories, which contain @file{Makefile.omk}. This is especially
520   useful if you are combining several projects or components
521   together. In the root directory of your project, you just create
522   symbolic links the components from other projects and all the linked
523   directories automatically appears as the value of this variable.
524
525   @example
526   SUBDIRS = $(ALL_OMK_SUBDIRS)
527   @end example
528 @end defvar
529
530 @node Dependency Tracking, Configuration and Conditional Compilation, Multiple Directories, OMK User's Manual
531 @section Dependency Tracking
532
533 OMK automatically handles tracking of dependencies of files in compiled
534 projects. It uses gcc's @option{-M@var{x}} options to do this for object
535 files. This way, whenever you change some header file, OMK recompiles
536 only those files, where the changed header was really included.
537
538 Dependencies are also maintained for libraries and binaries. To find the
539 dependencies, OMK parses linker map files, so a change to some library
540 causes recompilation of all programs using that library.
541
542 @node Configuration and Conditional Compilation, Advanced OMK Features, Dependency Tracking, OMK User's Manual
543 @section Configuration and Conditional Compilation
544
545 In many projects, it is necessary to configure the compilation process. By
546 this configuring we mean, setting some parameters that influence the
547 output of compilation process. In GNU projects, @command{configure}
548 script is usually responsible for configuration. User provides some
549 parameters to @command{configure}, which is run before compilation, and
550 this script does all steps needed to configure the sources and
551 make-system in the desired way.
552
553 OMK has its own configuration mechanism, which is described in this
554 section. For future releases, we plan that this mechanism can make use
555 of GNU Autoconf, but currently there is no directly integrated support
556 for it.
557
558 There exist three different configuration files
559 @file{config.omk-default}, @file{config.target} and
560 @file{config.omk}. All of these have to be stored in the same directory
561 as @file{Makefile.rules}. During compilation, these files are included
562 in @file{Makefile.rules} in this order which means that variables
563 assigned in the former files are overridden by those from later
564 ones. All settings specified here apply to the whole compilation
565 tree. Each file is intended for a different kind of configuration
566 values:
567 @table @file
568 @item config.omk-default
569   Stores default configuration of compiled components. This file is
570   automatically generated (see below) and should not be edited by users.
571 @item config.target
572   Stores default configuration for a project or target hardware. This
573   file is intended to be stored in a version control system and should
574   be modified only by the maintainer of the project. 
575
576   For cross compiled projects, this file typically contains settings of
577   variables like @var{CC} and @var{CFLAGS}.
578 @item config.omk
579   This is a file for end users, where any default settings set in the
580   above files can be overridden. This file should not be stored in
581   version control system. The project should compile without having this
582   file.
583 @end table
584
585 Besides variables defined in @file{config.target}, @file{Makefile.omk}
586 in any subdirectory can specify some configuration parameters. When
587 @command{make default-config} is run, all these parameters are found and
588 together with their default values are stored as makefile variables in
589 @file{config.omk-default}. This file is included during compilation, so
590 if you don't specify other values, these defaults are used. If you are
591 not satisfied with these defaults, you can override the values of
592 parameters either locally for your build in @file{config.omk} or
593 globally for all people working with the project in
594 @file{config.target}.
595
596 @subsection Specifying Configuration Parameters
597
598 To specify names and default values of configuration parameters use the
599 @code{default_CONFIG} variable in @file{Makefile.omk}.
600
601 @defvar default_CONFIG
602   This variable contains a list of configuration parameters and their
603   default values. The format of every item in this list is
604   @var{CONFIG_xxxx}=@var{value}. You can name the parameter as you want,
605   but it is good practice to start the name with @samp{CONFIG_} prefix.
606    
607   OMK can automatically generate header files, with C preprocessor macro
608   definitions according to the OMK's configuration parameters. The
609   actual content of generated header files depends on the form of the
610   @var{value}. The possible forms are:
611   
612 @table @code 
613 @item @samp{y}, @samp{n} or @samp{x}
614   This defines boolean parameters. If the value of the parameter is
615   @samp{y}, the @samp{#define CONFIG_@var{xxx} 1} is generated, if it is
616   @samp{n}, no @code{#define} is generated. 
617
618   @samp{x} is a special value called @emph{recessive 'n'}. The meaning
619   is that this parameter influences the component in the current
620   directory (i.e. the corresponding @code{#define} will be included in
621   @code{LOCAL_CONFIG_H}; see @ref{LOCAL_CONFIG_H}) but the default value
622   is not specified here. If the default value is not specified anywhere,
623   the behavior is the same as if @samp{n} is specified.
624 @item @samp{number}
625   Numeric parameters. The define looks like @samp{#define CONFIG_@var{xxx} @var{number}}
626 @item @samp{text}
627   Text without quotes. The define looks like @samp{#define CONFIG_@var{xxx} @var{text}}
628 @item @samp{"text"}
629   Text with quotes. The define looks like @samp{#define CONFIG_@var{xxx} "@var{text}"}
630 @end table
631 @end defvar
632
633 @noindent Example of using @code{default_CONFIG}. @file{Makefile.omk} reads like:
634 @example
635 @verbatiminclude ../tests/config/default/Makefile.omk
636 @end example
637 @noindent and @file{subdir/Makefile.omk} like:
638 @example
639 @verbatiminclude ../tests/config/default/subdir/Makefile.omk
640 @end example
641
642 @noindent After running @command{make default-config}, the content of
643 @file{config.omk-default} will be:
644 @example
645 @verbatiminclude ../tests/config/default/config.omk-correct
646 @end example
647
648 @subsection Using Configuration Parameters
649
650 Configuration parameters can be used in two ways:
651 @enumerate
652 @item
653   as variables in @file{Makefile.omk} and
654 @item
655   as C/C++ preprocessor macros in OMK generated header files.
656 @end enumerate
657
658 @noindent For the first use, your @file{Makefile.omk} may contain something like:
659 @example
660 SUBDIRS = arch/$(CONFIG_ARCH)
661
662 ifeq ($(CONFIG_DEBUG),y)
663 DEFS += -DUSE_SIMULATOR
664 endif
665 @end example
666
667 @noindent For the second use, there are several variables that control
668 the generation of header files with configuration values. These
669 variables are described here:
670
671 @anchor{LOCAL_CONFIG_H}
672 @defvar LOCAL_CONFIG_H
673   The value of this variable is the name of a header file, which will
674   contain all configuration parameters declared in the current directory
675   by @code{default_CONFIG}. This header file is accessible only by files
676   in the current directory and it should be included like @code{#include
677   "@var{myconfig.h}"}.
678
679   In @file{Makefile.omk}, the use of this variable can look like this:
680
681 @example
682 LOCAL_CONFIG_H = myconfig.h
683 @end example
684 @end defvar
685
686 @defvar config_include_HEADERS
687   This variable is similar to @code{LOCAL_CONFIG_H}. One difference is
688   that the generated header file is accessible to all sub-projects in
689   all directories, not only to the files in the same directory (the
690   header is stored in @file{_compiled} tree). The second difference is
691   that you have to specify, which configuration parameters you want to
692   appear in the header file.
693 @end defvar
694
695 @defvar xxx_DEFINES
696   This variable determines the configuration parameters that should be
697   stored in a header file specified by
698   @code{config_include_HEADERS}. The @var{xxx} in the name of this
699   variable needs to be the same as the base name (without extension) of
700   the header file.
701 @end defvar
702
703 @noindent Example of using @code{config_include_HEADERS}:
704 @example
705 default_CONFIG = CONFIG_LINCAN=y CONFIG_LINCANRTL=n CONFIG_LINCANVME=n
706 config_include_HEADERS = global.h
707 global_DEFINES = CONFIG_OC_LINCAN CONFIG_OC_LINCANRTL 
708 @end example
709
710 @noindent Here, we include only two out of the three configuration 
711 parameters defined in the current @file{Makefile.omk}. It is also
712 possible to include configuration parameters defined in a different
713 directory.
714
715 @subsection Common Variables
716
717 It is common practice to use @file{config.omk} to store project-wide
718 settings. Here is the list of variables, which are commonly set here
719 (but they can also be set elsewhere, e.g. in @file{Makefile.omk}).
720
721 You can easily ``reconfigure'' your project by changing the
722 @file{config.omk} file. It is useful to have several configurations
723 stored in different files and let @file{config.omk} be a symbolic link
724 to the desired configuration.
725
726 @vtable @code
727 @item CC
728   The name of C compiler.
729 @item CFLAGS
730   Command line options for C compiler.
731 @item CXX
732   The name of C++ compiler.
733 @item CPPFLAGS
734   Additional parameters (besides @code{CFLAGS}) to by passed to C++
735   compiler.
736 @end vtable
737
738 @node Advanced OMK Features, Properties of Specific Makefile.rules, Configuration and Conditional Compilation, OMK User's Manual
739 @section Advanced OMK Features
740
741 In this section we list several OMK features, which are more complicated
742 or rarely used so they were omitted in previous sections.
743
744 @menu
745 * Unsorted Advanced Features::  
746 * Adding Hooks to Passes::      
747 @end menu
748
749 @node  Unsorted Advanced Features, Adding Hooks to Passes, Advanced OMK Features, Advanced OMK Features
750 @subsection Unsorted Advanced Features
751
752 @itemize
753 @item
754   The @file{_compiled} directory can be shared between multiple projects
755   (by using symbolic links).
756
757 @item
758   If you work on a bigger project, you usually don't need to rebuild the
759   whole project and call @command{make} only in a
760   subdirectory. Sometimes, it might be useful to rebuild the whole
761   project. You can either change working directory to the root of your
762   project and call @command{make} there or, as a shortcut, you can use
763   @code{W} variable (see @ref{W}) to compile everything directly from a
764   subdirectory.
765 @example
766 @code{make W=1}
767 @end example
768
769 @item
770   Searching for @file{Makefile.rules} works such way, that if you get
771   into sources directory over symbolic links, OMK is able to unwind your
772   steps back. This implies you can make links to component directories
773   on read-only media, copy @file{Makefile.rules}, @file{Makefile} and
774   top-level @file{Makefile.omk}, adjust @file{Makefile.omk} to contain
775   only required components and then call @command{make} in the top
776   directory or even in read-only directories after changing working
777   directory from your tree to readonly media.
778 @end itemize
779
780
781 @anchor{W}
782 @defvar W
783 If this variable equals to @samp{1}, the @b{whole} project is
784 (re)compiled, even if @command{make} is called from a subdirectory.
785 @end defvar
786
787 @anchor{USE_LEAF_MAKEFILES}
788 @defvar USE_LEAF_MAKEFILES
789 If this variable equals to @samp{n} (default is unset), then OMK uses
790 the leaf @file{Makefile} only when it is invoked by simple
791 @command{make} command. Later, during recursive directory descent leaf
792 @file{Makefile} is not used and @file{Makefile.rules} is included
793 directly.
794
795 This feature is useful if you are integrating some non-OMK project into
796 your project. You only add @file{Makefile.omk} files to the other
797 project and don't need to modify project's original Makefiles.
798
799 This variable can be set either globally in a @file{config.*} file or
800 locally in some @file{Makefile.omk}. In the latter case, it influences
801 only subdirectories of the directory containing @file{Makefile.omk}.
802 @end defvar
803
804 @anchor{SOURCES_DIR}
805 @defvar{SOURCES_DIR}
806 This variable is set internally by OMK and its value is the absolute
807 path to the directory with compiled sources. It can be used if you need
808 to refer to sources files in some custom constructs in
809 @file{Makefile.omk}.
810 @example
811 @verbatim
812 include_HEADERS = $(notdir $(wildcard $(SOURCES_DIR)/*.h))
813 @end verbatim
814 @end example
815 @end defvar
816
817 @defvar{srcdir}
818 The same as @ref{SOURCES_DIR}. Provided for Automake compatibility.
819 @end defvar
820
821 @defvar{MAKERULES_DIR}
822 This variable is set internally by OMK and its value is the absolute
823 path to the directory containing @file{Makefile.rules} currently used
824 during compilation.
825 @end defvar
826
827 @defvar{OMK_RULES_TYPE}
828 Identification the type of @file{Makefile.rules} used for
829 compilation. Values are like @samp{linux}, @samp{rtems}, @samp{sysless},
830 ... This variable is automatically generated during creation of
831 @file{Makefile.rules} and can be used in configuration files (see
832 @ref{Configuration and Conditional Compilation}) or in
833 @file{Makefile.omk} to tweak compilation for specific targets.
834 @end defvar
835
836 @node Adding Hooks to Passes,  , Unsorted Advanced Features, Advanced OMK Features
837 @subsection Adding Hooks to Passes
838
839 Sometimes it is necessary to run some special commands as a part of
840 compilation. Typical example might be a tool which generates source
841 files on the fly. OMK supports calling additional commands during
842 compilation by so called @emph{pass hooks}. A pass hook is an ordinary
843 make target which is invoked as part of compilation during a particular
844 pass (see @ref{passes}). Pass hooks can be defined by assigning their
845 names to @code{xxx_HOOKS} variable.
846
847 @defvar{xxx_HOOKS}
848 Specifies one or more hooks (make targets) which are invoked during pass
849 @var{xxx}. The working directory of commands or this target is under the
850 @file{_build} tree.
851
852 In the example bellow header file @file{generated_header.h} is created
853 during @samp{include-pass} by @file{convert_data} program. The program
854 takes @file{data_file.txt} in the source directory as the input and
855 creates the header file in the in the correct directory under the
856 @file{_build} tree.
857
858 @example
859 include-pass_HOOKS = generated_header.h
860
861 generated_header.h: $(SOURCES_DIR)/data_file.txt
862             convert_data < $^ > $@@
863 @end example
864 @end defvar
865
866 @node Properties of Specific Makefile.rules, Running OMK under Windows OS, Advanced OMK Features, OMK User's Manual
867 @section Properties of Specific Makefile.rules
868
869 In previous sections, general properties of @file{Makefile.rules} were
870 documented. This section contains documentation to features found only
871 in some particular @file{Makefile.rules}.
872
873 @menu
874 * Linux::                       
875 * System-Less::                 
876 * RTEMS::                       
877 @end menu
878
879 @node Linux, System-Less, Properties of Specific Makefile.rules, Properties of Specific Makefile.rules
880 @subsection Linux
881
882 This @file{Makefile.rules} is used not only for Linux as the name
883 sugest, but also for other Unices and even for Windows.
884
885 @defvar BUILD_OS
886   The name of the operating system (OS) where make was invoked.
887 @end defvar
888
889 @defvar TARGET_OS
890   Should specify the name of OS where the resulting binary should be
891   used. If not specified manually, it equals to BUILD_OS. 
892 @end defvar
893
894 @defvar QT_SUBDIRS
895   Lists subdirectories with QT project (.pro) file. OMK will generate
896   there @file{Makefile} by calling @command{qmake} with correct
897   parameters to interface QT application to the rest of the compilation
898   tree.  Then @command{make} is called there to compile QT
899   application. Variable @samp{QTDIR} must be set to the directory with
900   QT instalation (e.g. /usr/share/qt4 on Debian).
901 @end defvar
902
903
904 @node System-Less, RTEMS, Linux, Properties of Specific Makefile.rules
905 @subsection System-Less
906
907 @node RTEMS,  , System-Less, Properties of Specific Makefile.rules
908 @subsection RTEMS
909  
910  
911 @node Running OMK under Windows OS, Interfacing OMK to popular IDEs, Properties of Specific Makefile.rules, OMK User's Manual
912 @section Running OMK under Windows OS
913
914 @node Interfacing OMK to popular IDEs, Troubleshooting, Running OMK under Windows OS, OMK User's Manual
915 @section Interfacing OMK to popular IDEs
916
917 @subsection KDevelop
918
919 KDevelop has support for custom build systems. To use KDevelop to
920 develop projects using OMK follow these steps. These steps are valid for
921 version 3.5.0 of KDevelop, but for previous versions it doesn't differ
922 much.
923
924 @enumerate
925 @item
926   Import project to KDevelop (from menu choose @emph{Project---Import
927   existing project}). Select the type of project to @emph{Generic C
928   Application (Custom Buildsystem)}.
929 @example
930   @image{kdevelop1}
931 @end example
932
933 @item
934   Then answer to following dialogs as you want.
935 @example
936   @image{kdevelop2}
937 @end example
938 @example
939   @image{kdevelop3} @image{kdevelop4}
940 @end example
941
942 @item
943   If you are working only on some small part of the bigger project, you
944   usually don't want to recompile the whole project every time. In
945   @emph{Project---Project Options}, you can specify the subdirectory where to
946   run @command{make}.
947 @example
948   @image{kdevelop5}
949 @end example
950
951 @item
952   If you want to switch between several configurations easily (see also
953   @ref{Configuration and Conditional Compilation}), in the same dialog
954   you can add @option{-e} to make options. This makes environment variables
955   have higher precedence than those in @file{config.omk-default}. Then,
956   you can define several environments with different
957   @code{CONFIG_@var{xxx}} variables and their values.
958 @example
959   @image{kdevelop6}
960 @end example
961
962 @item
963   You can easily switch the configurations from @emph{Build---Make
964   Environment}.
965 @example
966   @image{kdevelop7}
967 @end example
968 @end enumerate
969
970
971 @subsection Eclipse
972
973 @subsection Emacs, VIM, etc.
974
975 Since OMK compilation is started by executing @command{make} command,
976 many common editors can work easily with OMK.
977
978 Under Emacs, you can use @command{compile} or @command{recompile}
979 commands as you are used to do.
980
981 @node Troubleshooting,  , Interfacing OMK to popular IDEs, OMK User's Manual
982 @section Troubleshooting
983
984 @itemize
985 @item
986   If you rename some file or directory and then you can't compile your
987   project, call @command{make clean} in the directory with errors. The
988   reason for this behavior is that OMK remembers dependencies of every
989   file. After renaming something, the original name is still stored in
990   dependencies, but make doesn't know how to create this non-existent
991   source.
992
993 @item
994   Sometimes, you may want to compile one file the same way as OMK does
995   it, but run the compilation manually from command line. For example,
996   you want to debug some preprocessor macros and you only want to
997   produce preprocessed source instead of object file.
998
999   To compile something manually, you can run OMK with @command{make
1000   V=2}. This will print all commands executed together with directory
1001   navigation messages. Find the command you want to execute manually in
1002   the output. To run it, you need to change the working directory to the
1003   correct one in the @file{_build} tree. The correct directory can be
1004   found in make output on the line @samp{Entering directory} preceding
1005   the desired command.
1006 @end itemize
1007
1008 @node Original README, OMK Development, OMK User's Manual, Top
1009 @chapter Original README
1010
1011 Since this manual still doesn't cover all aspects of OMK, we include
1012 here a @file{README.rules} file, which was written for the first version
1013 of OMK.
1014
1015 @b{Important notice:} This make system uses features found in recent
1016 versions of GNU Make program. If you encounter problems with package
1017 building, check, that you use correct version of Make program.  The
1018 Make older than version 3.80, could not be used.  Even Make version
1019 3.80 has annoying bug which causes building fail with misleading
1020 message "virtual memory exhausted".  Please, upgrade at least to
1021 version 3.81 of GNU Make.
1022
1023 There is list of features which we want to solve with our make system:
1024 @itemize
1025 @item
1026 Central @file{Makefile.rules} for most of components of a bigger project.
1027
1028 FIXME (our CAN framework includes more libraries common with our other
1029 projects, we need to separate some utility libraries etc.)
1030 @item
1031 The rules in more spread Makefiles are way to the hell (update for
1032 different kernel, RT-Linux etc would be nightmare in other case).
1033 @item
1034 Make system should allow to freely move cross-dependant components in
1035 directory structure without need to update users of moved component (I
1036 hate somethink like @option{-I../../sched/rtlshwq/include} in CAN makefiles for
1037 example. If a component is renamed or version is added to then name,
1038 all Makefiles in CAN will require update).
1039 @item
1040 Make system should be able to compile mutually cross-dependant
1041 libraries and should ensure, that change in one component sources or
1042 headers would result in relink or rebuild in components linked against
1043 that library or including modified header file.
1044 @item
1045 Make system has to enable compilation out of OCERA full source tree
1046 (we would lost many users of particular components in other case).
1047 @item
1048 Compile should be able to do all above work without need to install
1049 any files before successful finish of build.
1050 @item
1051 Because we use some libraries for RT-Linux build and user-space build,
1052 we need to solve how to compile from same sources to both targets.
1053 @item
1054 The build system should allow to call make for particular source
1055 subdirectory. Time of recursive make through all subdirectories is
1056 unacceptable.
1057 @item
1058 Make system should enable to build out of sources tree (else clean or
1059 working with CVS sandbox gets fussy and simultaneous multiple targets
1060 gets problematic).
1061 @item
1062 It would be good, if there is a possibility to call make from
1063 read-only media sources.
1064 @item
1065 Make system should store results of build in some separate directory
1066 structure to simple install and testing.
1067 @item
1068 Makefiles in sources directories should be simple.
1069 @end itemize
1070
1071 There is probably only one alternative fully supporting above requirements
1072 and it is GNU Autoheader...Automake...Autoconf... system.
1073 But it is complicated and requires big amount of support files.
1074 It would be acceptable if it could be easily used for OCERA framework.
1075 But there are important show stoppers for that system:
1076 @itemize
1077 @item
1078 It would require deep revision of all OCERA CVS contents and agreement
1079 on this would be problematic
1080 @item
1081 This system is not well prepared for dual compilation for Linux and
1082 RT-Linux sub-targets. It would mean many changes in default autoconf
1083 setup to support this. Probably simplest way would be to rebuild GCC
1084 tool chain for something like i586-elf-rtlinux.  This would require
1085 even more space for OCERA development.
1086 @end itemize
1087
1088 The problem calls for some solution, which would have minimal impact
1089 on other components and would be elegant and would be maintainable
1090 and small, because our main goal is components development and not
1091 make systems development.
1092
1093 There is result of our trial. It is OMK make system.
1094 The @file{Makefile} and @file{Makefile.omk} files should be in all source
1095 directories. Common @file{Makefile.rules} file is required in the toplevel
1096 sources directory. Alternatively this file could be moved
1097 to link tree pointing into readonly media or can be anywhere
1098 else if @code{MAKERULES_DIR} and @code{SOURCES_DIR} are specified.
1099
1100 @c !!! tohle tam nejak zmizelo, mozna by to chtelo skontrolovat, ze to
1101 @c     sedi s aktualnim stavem
1102
1103
1104 Syntax of Makefile.omk files is for usual cases compatible
1105 to Automake's Makefile.am descriptions. There are specific targets
1106 for RT-Linux and Linux kernel related stuff
1107
1108 Makefile.omk user defined variables
1109 @vtable @code
1110 @item SUBDIRS
1111 list of subdirectories intended for make from actual directory
1112 @item lib_LIBRARIES
1113 list of the user-space libraries
1114 @item shared_LIBRARIES
1115 list of the user-space shared libraries
1116 @item kernel_LIBRARIES
1117 list of the kernel-space libraries
1118 @item rtlinux_LIBRARIES
1119 list of the RT-Linux kernel-space libraries
1120 @item include_HEADERS  
1121 list of the user-space header files
1122 @item nobase_include_HEADERS 
1123 headers copied even with directory part
1124 @item kernel_HEADERS   
1125 list of the kernel-space  header files
1126 @item rtlinux_HEADERS  
1127 list of the RT-Linux kernel-space  header files
1128 @item bin_PROGRAMS     
1129 list of the require binary programs
1130 @item utils_PROGRAMS   
1131 list of the development utility programs
1132 @item kernel_MODULES   
1133 list of the kernel side modules/applications
1134 @item rtlinux_MODULES  
1135 list of RT-Linux the kernel side modules/applications
1136 @item xxx_SOURCES      
1137 list of specific target sources
1138 @item INCLUDES         
1139 additional include directories and defines for user-space
1140 @item kernel_INCLUDES  
1141 additional include directories and defines for kernel-space
1142 @item rtlinux_INCLUDES 
1143 additional include directories and defines for RT-Linux
1144 @item default_CONFIG   
1145 list of default config assignments CONFIG_XXX=y/n ...
1146 @end vtable
1147
1148 The Makefile is same for all sources directories and is only 14 lines
1149 long.  It is there only for convenience reasons to enable call "make"
1150 from local directory. It contains code which locates
1151 @file{Makefile.rules} in actual or any parent directory. With standard
1152 BASH environment it works such way, that if you get into sources
1153 directory over symbolic links, it is able to unwind yours steps back
1154 => you can make links to readonly media component directories, copy
1155 @file{Makefile.rules}, Makefile and toplevel Makefile.omk, adjust
1156 Makefile.omk to contain only required components and then call make in
1157 top or even directories after crossing from your tree to readonly
1158 media.
1159
1160 The system compiles all files out of source directories.  The actual
1161 version of system is adapted even for OCERA tree mode if
1162 @code{OCERA_DIR} variable is defined in @file{Makefile.rules}
1163
1164 There are next predefined directory name components, which can be
1165 adapted if required
1166
1167 @table @code
1168 @item BUILD_DIR_NAME = _build
1169         prefix of directory, where temporary build files are stored
1170 @item COMPILED_DIR_NAME = _compiled
1171         prefix of directory, where final compilation results are stored
1172 @item GROUP_DIR_NAME = yyy
1173         this is used for separation of build sub-trees in OCERA environment
1174         where more @file{Makefile.rules} is spread in the tree
1175 @end table
1176
1177 Next directories are used:
1178
1179 @table @code
1180 @item KERN_BUILD_DIR   := $(MAKERULES_DIR)/$(BUILD_DIR_NAME)/kern
1181         directory to store intermediate files for kernel-space targets
1182 @item USER_BUILD_DIR   := $(MAKERULES_DIR)/$(BUILD_DIR_NAME)/user
1183         directory to store intermediate files for user-space targets
1184
1185 @item USER_INCLUDE_DIR := $(MAKERULES_DIR)/$(COMPILED_DIR_NAME)/include
1186         directory to store exported include files which should be installed later
1187         on user-space include path
1188 @item USER_LIB_DIR     := $(MAKERULES_DIR)/$(COMPILED_DIR_NAME)/lib
1189         same for user-pace libraries
1190 @item USER_UTILS_DIR   := $(MAKERULES_DIR)/$(COMPILED_DIR_NAME)/bin-utils
1191         utilities for testing, which would not probably be installed
1192 @item USER_BIN_DIR     := $(MAKERULES_DIR)/$(COMPILED_DIR_NAME)/bin
1193         binaries, which should go into directory on standard system PATH
1194         (/usr/local/bin, /usr/bin or $(prefix)/bin)
1195
1196 @item KERN_INCLUDE_DIR := $(MAKERULES_DIR)/$(COMPILED_DIR_NAME)/include-kern
1197         directory to store exported include files which should be installed later
1198         on kernel-space include path
1199 @item KERN_LIB_DIR     := $(MAKERULES_DIR)/$(COMPILED_DIR_NAME)/lib-kern
1200         same for kernel-pace libraries
1201 @item KERN_MODULES_DIR := $(MAKERULES_DIR)/$(COMPILED_DIR_NAME)/modules
1202         builded modules for Linux kernel or RT-Linux system
1203 @end table
1204
1205 There is more recursive passes through directories to enable
1206 mutual dependant libraries and binaries to compile.
1207 Next passes are defined
1208
1209 @table @samp
1210 @item default-config
1211 generates @file{config.omk-default} or xxx-default (FIXME) configuration file
1212 @item check-dir 
1213 checks and creates required build directories
1214 @item include-pass   
1215 copies header files to @code{USER_INCLUDE_DIR} and @code{KERN_INCLUDE_DIR}
1216 @item library-pass
1217 builds objects in USER_BUILD_DIR/@var{relative path} and creates libraries
1218 in USER_LIB_DIR
1219 @item binary-pass and utils-pass
1220 links respective binaries in USER_@{BIN,UTILS@}_DIR directory. If some
1221 object file is missing it compiles it in USER_BUILD_DIR/@var{relative path}
1222 @item kernel-lib-pass
1223 builds libraries for kernel space targets
1224 @item kernel-pass 
1225 builds kernel modules
1226 @end table
1227
1228 The amount of passes is relatively high and consumes some time.  But
1229 only other way to support all required features is to assemble one big
1230 toplevel Makefile, which would contain all components and targets
1231 cross-dependencies.
1232
1233 Drawbacks of designed make system
1234 @itemize
1235 @item
1236 the system is not as fast as we would like
1237 @item
1238 it lacks Autoconf and configure extensive support for many systems
1239 from UNIX to DOS and WINDOWS
1240 @item
1241 it does not contain support for checking existence of target
1242 libraries and functionalities as GNU Autoconf
1243 @item
1244 it is heavily dependant on GNU MAKE program. But it would not be big
1245 problem, because even many commercial applications distribute GNU MAKE
1246 with them to be able to work in non-friendly systems
1247 @item
1248 the key drawback is dependence on recent MAKE version 3.80 and better
1249 and even version 3.80 of MAKE has important bug, which has been
1250 corrected in newer sources (FIXME)
1251 @end itemize
1252
1253 The last point is critical. I have not noticed it first, because
1254 I use Slackware-9.2 and it contains latest released version 
1255 of MAKE (version 3.80).
1256 The problem appears when I have tried to build bigger libraries.
1257 There is bug in version 3.80, which results in misleading
1258 error "Virtual memory exhausted". It is known bug with ID 1517
1259
1260 @smallexample
1261 * long prerequisite inside eval(call()) => vm exhausted, Paul D. Smith
1262 @end smallexample
1263
1264
1265 I have optimized some rules to not push memory to the edge,
1266 but there could be still issues with 3.80 version.
1267
1268 I have downloaded latest MAKE CVS sources. The compilation required
1269 separate lookup and download for .po files and full Autoheader... cycle.
1270 I have put together package similar to release. Only ./configure --prefix=...
1271 and make is required. CVS sources contains version 3.81beta1.
1272 You can download prepared sources archive from
1273   @indicateurl{http://paulandlesley.org/make/make-3.81beta1.tar.bz2}
1274 Or you can get our local copy from
1275   @indicateurl{http://cmp.felk.cvut.cz/~pisa/can/make-3.81beta1.tar.gz}
1276
1277 The archive contains even "make" binary build by me, which should work
1278 on other Linux distributions as well.  Older version of MAKE (3.79.x
1279 released about year 2000) found on Mandrake and RedHat are not
1280 sufficient and do not support eval feature.  I do not expect, that
1281 Debian would be more up-to-date or contain fixes to MAKE vm exhausted
1282 bug.
1283
1284 The local CTU archive with our CAN components prepared for inclusion
1285 into OCERA SF CVS could be found in my "can" directory
1286
1287   @indicateurl{http://cmp.felk.cvut.cz/~pisa/can/ocera-can-031212.tar.gz}
1288
1289 The code should build for user-space with new make on most of Linux distros
1290 when make is updated.
1291
1292 If you want to test compile for RT-Linux targets, line
1293
1294 @example
1295 #RTL_DIR := /home/cvs/ocera/ocera-build/kernel/rtlinux
1296 @end example
1297
1298 in @file{Makefile.rules} has to be activated and updated
1299 to point RT-Linux directory containing "rtl.mk".
1300 There is only one library ("ulutrtl") and test utility compiled for RT-Linux
1301 (@file{can/utils/ulut/ul_rtlchk.c}).
1302
1303 The next line, if enabled, controls compilation in OCERA project tree
1304
1305 @example
1306 #OCERA_DIR := $(shell ( cd -L $(MAKERULES_DIR)/../../.. ; pwd -L ) )
1307 @end example
1308
1309 The LinCAN driver has been updated to compile out of source directories.
1310
1311 Please, check, if you could compile CAN package and help us with integration
1312 into OCERA SF CVS. Send your comments and objections. 
1313
1314 The OMK system has been adapted to support actual OCERA configuration process.
1315 I am not happy with ocera.mk mix of defines and poor two or three rules,
1316 but OMK is able to overcome that.
1317
1318 The OMK system has integrated rules (default-config) to build default
1319 configuration file. The file is named @file{config.omk-default} for
1320 the stand-alone compilation.  The name corresponds to OCERA config +
1321 "-default" if OCERA_DIR is defined.  This file contains statements
1322 from all @code{default_CONFIG} lines in all @file{Makefile.omk}.  The
1323 file should be used for building of own @file{config.omk} file, or as
1324 list for all options if Kconfig is used.
1325
1326 @c @chapter OMK Reference
1327
1328 @node OMK Development, Variable Index, Original README, Top
1329 @chapter OMK Development
1330
1331
1332
1333 @node Variable Index,  , OMK Development, Top
1334 @unnumbered Variable Index
1335
1336 @printindex vr
1337
1338 @c @node Concept Index,  , Variable Index, Top
1339 @c @unnumbered Concept Index
1340 @c @printindex cp
1341
1342 @bye