hal/external/tellstick-rfcmd/build.sh

7 lines
198 B
Bash
Raw Normal View History

2015-03-26 21:22:26 +00:00
#!/bin/sh
set -e
make clean || { echo "Warning: make clean failed"; }
make || { echo "make failed"; exit 1; }
make install || { echo "make install failed"; exit 1; }
echo rfcmd built and installed!