Skip to content

Smintfy/nobu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nobu

Yet another NOT a build system for C. Windows are currently not supported.

 _   _       _           
 
| \ | |     | |          
 
|  \| | ___ | |__  _   _ 
 
| . ` |/ _ \| '_ \| | | |
 
| |\  | (_) | |_) | |_| |
 
|_| \_|\___/|_.__/ \__,_|


Example

For more examples see examples.

#include <stdio.h>

#include "nobu.h"

int main(int argc, char **argv)
{
    AUTO_REBUILD_SELF(argc, argv);

    printf("Hello!\n");

    return 0;
}

we go ahead and build this once

cc -o main main.c
./main

# Hello!

and now if we update or change our C program example

// from printf("Hello!\n");
printf("Hello, World!\n");

if we go ahead and run the executable again, it will rebuild from the new source and update the binary to that latest source

./main

# Hello, World!

About

Yet another NOT a build system

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages