]> rtime.felk.cvut.cz Git - frescor/frsh-forb.git/blob - build/aquosa/create-links
Directory structure updated and added submodules with sources
[frescor/frsh-forb.git] / build / aquosa / 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 fna
9 forb
10 fosa
11 frsh
12 frsh_forb
13 fwp/fwp
14 ulut
15 utils
16 "
17
18 FRESCOR_SRC=${1:-../..}
19
20 for link in $LINKS; do
21         ln -s $FRESCOR_SRC/$link .
22 done
23