README 1.7 KB

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