Initial commit

This commit is contained in:
Ziver Koc 2015-03-26 21:22:26 +00:00
commit 12f2c3eeee
78 changed files with 4776 additions and 0 deletions

6
external/tellstick-rfcmd/build.sh vendored Normal file
View file

@ -0,0 +1,6 @@
#!/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!