mirror of
https://github.com/Fihdi/Eurorack.git
synced 2026-03-27 04:59:14 +00:00
14 lines
221 B
Bash
Executable File
14 lines
221 B
Bash
Executable File
#!/bin/bash
|
|
|
|
START_DIR=$PWD
|
|
LIBDAISY_DIR=$PWD/libDaisy
|
|
|
|
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."
|