Skip to content
Snippets Groups Projects
Commit 65d1c4ba authored by Florian Franzen's avatar Florian Franzen
Browse files

Update linux setup.sh to use new Makefile

parent b4eddd80
No related branches found
No related tags found
No related merge requests found
......@@ -39,23 +39,7 @@ else
fi
# Step 2: Compile plugins
PLUGIN_SRC_DIR="${PROC_DIR}/Source/Processors"
PLUGINS=`ls -d ${PLUGIN_SRC_DIR}/*`
cd $PLUGIN_SRC_DIR
for PLUGIN in ${PLUGINS}
do
if [ -f $PLUGIN/Makefile ]; then
cd $PLUGIN
make clean
make
if [ $? -ne 0 ]; then
echo "-----> Plugin compile failed."
exit
fi
cd ..
fi
done
make -j4 -f Makefile.plugins
if [ $? -eq 0 ]; then
echo "-----> Plugin installation sucessful."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment