Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 907 Bytes

README.md

File metadata and controls

32 lines (29 loc) · 907 Bytes

What is BuildDoc?

A build tool for automatically running, compiling, and managing projects.

Example:

CC="gcc"
FLAGS="-Wall -Wextra -O2 -g"
TARGET="bin/program"
MAIN="src/main.c"

[build]
&echo "Building program..."
$CC $FLAGS -o $TARGET $MAIN
$TARGET
&echo "Done!"