1234567891011121314151617181920212223242526272829303132333435 |
- #!/usr/bin/env bash
- [ "x${DEBUG+set}" = 'xset' ] && set -v
- set -u -e
- printf "Cleaning the previous build of i945-pwm\n"
- cd "resources/utilities/i945-pwm/"
- make clean
- cd "../../../"
- printf "\n\n"
|