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!"
A build tool for automatically running, compiling, and managing projects. (W.I.P!!!!)
PythonApache-2.0
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!"