]> git.saurik.com Git - wxWidgets.git/blame - build/bakefiles/README
fixed typo
[wxWidgets.git] / build / bakefiles / README
CommitLineData
2da40942
VS
1
2This directory contains Bakefile (see http://bakefile.sourceforge.net)
3files needed to generate native makefiles for wxWindows library, contrib and
4samples.
5
31caa11b
VS
6Use the bakefile_gen utility to regenerate the makefiles (run it in this
7directory!). If you run it with no arguments, it will generate all makefiles
8that are not up to date.
2da40942
VS
9
10Use "bakefile_gen -c" to clean generated files.
11
12You can generate or clean only subset of files by specifying -f or -b flags
13when invoking bakefile_gen. For example, "bakefile_gen -fborland,watcom" will
14only regenerate Borland C++ and OpenWatcom makefiles. -b flag limits
15regeneration only to specified bakefiles. For example,
16"bakefile_gen -b wx.bkl" will only regenerate main library makefiles.
17"bakefile_gen -b '../../samples/html/*/*.bkl' will regenerate makefiles for
18all wxHTML samples. -b and -f can be combined.
19
20You can customize the process of generating makefiles by adding file
21Bakefiles.local.bkgen (same format as Bakefiles.bkgen) with further settings.
22For example, you may disable output for compilers you don't use:
9bb15269 23 <disable-formats>msvc,msvc6prj</disable-formats>
2da40942
VS
24
25Note: bakefile_gen creates file .bakefile_gen.state with dependencies
26information. This file can be safely deleted, but it contains valuable
27information that speed up regeneration process.
02a0c28d
VS
28
29Note: the following files are generated using bakefile_gen:
30 * build/msw/*
31 * contrib/build/* (except .bkl files)
32 * makefiles with same names as makefiles in above dirs, Makefile.in files
33 that contain "This makefile was generated by Bakefile" banner and
34 VC++ project files in samples, demos and utils directories (inc. contrib
35 ones)
36 * src/wxWindows.dsp
37 * {wxGTK,wxMotif,wxX11}.spec (only wxBase headers list)
38 * autoconf_inc.m4
39 * all Makefile.in files
40 (hopefully I didn't forget anything - VS)