vpp/build-root/scripts/find-dev-contents
Damjan Marion cb034b9b37 Move java,lua api and remaining plugins to src/
Change-Id: I1c3b87e886603678368428ae56a6bd3327cbc90d
Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-01-01 18:11:43 +01:00

32 lines
772 B
Bash
Executable File

#!/bin/bash
# includes
paths=`find $1/*/include -type f -print | grep -v '/dpdk/include/'`
rm -f $2
for path in $paths
do
relpath=`echo $path | sed -e 's:.*/include/::'`
dir=`dirname $relpath`
if [ $dir = "." ] ; then
echo ../$path /usr/include >> $2
else
echo ../$path /usr/include/$dir >> $2
fi
done
# sample plugin
paths=`(cd ..; find src/examples/sample-plugin -type f -print | grep -v autom4te)`
for path in $paths
do
relpath=`echo $path | sed -e 's:.*src/examples/::'`
dir=`dirname $relpath`
if [ $dir = "sample-plugin" ] ; then
echo ../../$path /usr/share/doc/vpp/examples/sample-plugin/ >> $2
else
echo ../../$path \
/usr/share/doc/vpp/examples/$dir >> $2
fi
done