/BuildDoc

A build tool for automatically running, compiling, and managing projects. (W.I.P!!!!)

Primary LanguagePythonApache License 2.0Apache-2.0


~ WORK IN PROGRESS!! ~

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!"