#!/bin/sh echo "-- Starting with cleaning without any output from Build Program:" bin/rubu_example clean echo "-- The same with command outputs:" bin/rubu_example -v clean echo "-- Initial build with all files created:" bin/rubu_example -v default echo "-- Re-build using implicit \"default\" build, but no changes and thus no actions:" bin/rubu_example -v echo "-- Touch main source file, and re-building occurs (serial flow forced/selected):" touch src/hello_world.c bin/rubu_example -s -v echo "-- Touch file generator script, but no actions since building is file context sensitive only:" touch bin/gen_world bin/rubu_example -v echo "-- Complete re-build by combining clean and default build:" bin/rubu_example -v clean default