1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00
oh/scripts/link.sh

18 lines
342 B
Bash
Raw Normal View History

2016-03-08 15:49:15 -05:00
#!/bin/bash
##############################
#Create directory of all links
##############################
if [ -d "symlinks" ]
then
rm -r symlinks
fi
mkdir -p $OH_HOME/symlinks/hdl
mkdir -p $OH_HOME/symlinks/dv
2016-03-13 09:31:45 -04:00
pushd $OH_HOME/symlinks/hdl > /dev/null
2016-03-22 08:27:59 -04:00
ln -s ../../src/*/hdl/*.{v,vh} .
2016-03-08 15:49:15 -05:00
cd ../dv
2016-03-22 08:27:59 -04:00
ln -s ../../src/*/dv/*.v .
2016-03-13 09:31:45 -04:00
popd > /dev/null