]> rtime.felk.cvut.cz Git - frescor/frsh-forb.git/blob - build/marte/create-links
Directory structure updated and added submodules with sources
[frescor/frsh-forb.git] / build / marte / create-links
1 #!/bin/sh
2
3 # Usage: ./create-links [path/to/frescor/root]
4 #
5 # path/to/frescor/root defaults to ../..
6
7 LINKS="
8 dtm
9 fna
10 fosa
11 frsh
12 fsa
13 utils
14 "
15
16 FRESCOR_SRC=${1:-../..}
17
18 for link in $LINKS; do
19         ln -s $FRESCOR_SRC/$link .
20 done
21