- Notifications
You must be signed in to change notification settings - Fork78
A tool for creating an amalgamation from C and C++ sources
License
vinniefalco/Amalgamate
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A cross platform command line tool for producing an amalgamation ofC or C++ sources.
An amalgamation is an alternate way to distribute a library's source code usingonly a few files (as low as one or two). This tool produces an amalgamation byinlining included files to create one or more large source or header files.
For libraries which are mature (i.e. do not change often) the amalgamateddistribution format is often both easier to integrate, and update. Theamalgmation is added as an additional source file to an existing projectrather than needing to be built separately by build tools. Here are someexamples of source code libraries that have been amalgamated:
- FreeTypehttp://github.com/vinniefalco/FreeTypeAmalgam
- JUCEhttp://github.com/vinniefalco/JUCEAmalgam
- TagLibhttp://github.com/vinniefalco/TagLibAmalgam
Copyright (C) 2012Vinnie Falco
Amalgamate is provided under the terms of theMIT license.
Amalgamate uses portions ofJUCE, licensed separately.