• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..22-Mar-2011-

formats/H22-Mar-2011-167136

wxpresets/H03-May-2022-828423

Bakefiles.bkgenH A D22-Mar-201110.1 KiB272211

READMEH A D22-Mar-20111.9 KiB4436

build_cfg.bklH A D22-Mar-20112.6 KiB6047

common.bklH A D22-Mar-201129.4 KiB793629

common_contrib.bklH A D22-Mar-20111.7 KiB5135

common_samples.bklH A D22-Mar-2011503 2013

common_samples_intree.bklH A D22-Mar-20114.1 KiB12269

common_samples_outoftree.bklH A D22-Mar-20111.3 KiB4425

config.bklH A D22-Mar-201116.8 KiB520431

expat.bklH A D22-Mar-20111.6 KiB4943

files.bklH A D22-Mar-201192.9 KiB3,4933,099

jpeg.bklH A D22-Mar-20112.5 KiB8177

mac_bundles.bklH A D22-Mar-20112.7 KiB8248

make_dist.mkH A D22-Mar-201135 KiB847729

monolithic.bklH A D22-Mar-20111.5 KiB4435

multilib.bklH A D22-Mar-201112.2 KiB316211

odbc.bklH A D22-Mar-20111.3 KiB4642

opengl.bklH A D22-Mar-20111.5 KiB4328

plugins.bklH A D22-Mar-2011529 177

plugins_deps.bklH A D22-Mar-2011530 229

png.bklH A D22-Mar-20111.5 KiB5248

regex.bklH A D22-Mar-20111.9 KiB5548

tiff.bklH A D22-Mar-20113.2 KiB9082

version.bklH A D22-Mar-20113.1 KiB8637

wx.bklH A D22-Mar-20119.3 KiB266195

wxwin.pyH A D22-Mar-20115.8 KiB159123

zlib.bklH A D22-Mar-20111.4 KiB5046

README

1
2This directory contains Bakefile (see http://bakefile.sourceforge.net)
3files needed to generate native makefiles for wxWidgets library, contrib and
4samples.
5
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.
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:
23   <?xml version="1.0" ?>
24   <bakefile-gen>
25     <disable-formats>msvc,msvc6prj</disable-formats>
26   </bakefile-gen>
27
28Note: bakefile_gen creates file .bakefile_gen.state with dependencies
29information. This file can be safely deleted, but it contains valuable
30information that speed up regeneration process.
31
32Note: the following files are generated using bakefile_gen:
33  * build/msw/*
34  * contrib/build/* (except .bkl files)
35  * makefiles with same names as makefiles in above dirs, Makefile.in files
36    that contain "This makefile was generated by Bakefile" banner and
37    VC++ project files in samples, demos and utils directories (inc. contrib
38    ones)
39  * src/wxWindows.dsp
40  * {wxGTK,wxMotif,wxX11}.spec (only wxBase headers list)
41  * autoconf_inc.m4
42  * all Makefile.in files
43  (hopefully I didn't forget anything - VS)
44