Browse Source

remove ci - dependencies are outside the project

main
heck 7 months ago
parent
commit
ee2f27dee4
  1. 24
      ci/build_libs.sh

24
ci/build_libs.sh

@ -1,24 +0,0 @@
#!/bin/bash
START_DIR=$PWD
LIBDAISY_DIR=$PWD/libs/libDaisy
DAISYSP_DIR=$PWD/libs/DaisySP
echo "building libDaisy . . ."
cd "$LIBDAISY_DIR" ; make -s clean ; make -j -s
if [ $? -ne 0 ]
then
echo "Failed to compile libDaisy"
exit 1
fi
echo "done."
echo "building DaisySP . . ."
cd "$DAISYSP_DIR" ; make -s clean ; make -j -s
if [ $? -ne 0 ]
then
echo "Failed to compile DaisySP"
exit 1
fi
echo "done."
Loading…
Cancel
Save