Very small build C system written in a single C file. It scans all .c files in the current directory for libraries and automatically includes them, compiles them to .o files, then links them into the user-specified binary.
Installing/Updating: (you can copy/paste all of this into your terminal)
git clone --depth 1 https://github.com/pancakedevourer/build &&
cd build &&
cc main.c -o mk && # (or your C compiler)
sudo mv mk /usr/local/bin && # (or your preffered directory)
cd .. &&
sudo rm -r build
Usage: mk 'compiler command'