summaryrefslogtreecommitdiff
path: root/util/README
AgeCommit message (Collapse)AuthorFilesLines
2009-01-02Fix various README typosBehdad Esfahbod1-0/+6
2008-10-31[util] Add cairo-trace.Chris Wilson1-8/+0
This tool can be used to trace all the cairo function calls made by an applications. This is useful for either extracting a test case triggering a bug from an application, or simply to get a general idea of how an application is using cairo. After make install, cairo-trace program arguments, will print out all the cairo calls to the terminal and also capture theme in ./program.$pid.trace The format of the output is CairoScript, watch this space for more cairo-script tools!
2008-09-02Revamp the build system.Behdad Esfahbod1-0/+69
Quick summary of changes: - Move list of cairo source files out of src/Makefile.am and into src/Sources.mk, - Generate files src/Config.mk and src/Config.mk.win32 that choose the right set of source files and headers based on configured backends and features. This drastically simplifies building using other build systems. The src/Makefile.win32 file needs to be updated to reflect these changes. - Add README files to various directories, - Add toplevel HACKING file.