The only build system that feels like part of the language

#include "build.h"  // That's it. You're ready.

No build tools, just code.

terminal
$ gcc -o build build.c
$ ./build
[INFO] IncludeBuild v1.0.0 initialized
[INFO] Adding source file: main.c
[INFO] Compiling: main.c
[INFO] Linking: my_program
[INFO] Build successful in 0.12s
$

Why IncludeBuild?

Header-Only

Single file inclusion with no dependencies

Minimal

Small API that's easy to learn and use

Portable

Works across platforms with no additional requirements

Transparent

Clearly see what's happening during builds

Fast

Efficient compilation with parallel build support

Flexible

Handles everything from simple projects to complex builds

Get Started in Seconds

# Option 1: Copy directly to your project
cp includebuild/src/build.h your_project/

# Option 2: System-wide installation
git clone https://github.com/includebuild/includebuild.git
cd includebuild
make install
// build.c
#include "build.h"

int main() {
    // Initialize the build system
    ib_workspace_t ws = ib_create_workspace();
    
    // Add source files
    ib_add_source_file(ws, "main.c");
    ib_add_source_file(ws, "helper.c");
    
    // Set output executable name
    ib_set_output(ws, "my_program");
    
    // Run the build
    ib_build(ws);
    
    // Clean up
    ib_destroy_workspace(ws);
    return 0;
}
# Compile your build script
gcc -o build build.c

# Run it to build your project
./build

# That's it! Now run your program
./my_program

Examples

Basic

A simple single-file project demonstrating the minimal setup.

View Example

Multi-file

Building a project with multiple source files and dependencies.

View Example

Library

Building and linking against a static library.

View Example

Raylib Pong

A complete game using external libraries.

View Example

How does it compare?

Feature IncludeBuild Make CMake
Self-contained Single header × Requires Make × Requires CMake
Learning curve Just C ⚠️ Custom syntax × Complex syntax
Power ⚠️ Medium High Very high
Transparency High ⚠️ Medium × Low
Large projects ⚠️ Medium Good Excellent
Make has Makefiles. CMake has CMakeLists.txt. IncludeBuild has... nothing. Just code.

Documentation