blob: 8e07974ea9f8cd3bce09fbb01eb2d0488f10809f [file] [log] [blame]
Harald Weltedf327232017-12-28 22:51:51 +01001#!/bin/sh
2
3BASEDIR=../deps
4
5gen_links() {
6 DIR=$1
7 FILES=$*
8 for f in $FILES; do
9 echo "Linking $f"
10 ln -sf $DIR/$f $f
11 done
12}
13
14DIR=$BASEDIR/titan.Libraries.TCCUsefulFunctions/src
Max6367d7b2018-02-05 16:58:27 +010015FILES="TCCInterface_Functions.ttcn TCCConversion_Functions.ttcn TCCConversion.cc
Harald Weltedf327232017-12-28 22:51:51 +010016TCCInterface.cc TCCInterface_ip.h"
17gen_links $DIR $FILES
18
19DIR=$BASEDIR/titan.TestPorts.Common_Components.Socket-API/src
20FILES="Socket_API_Definitions.ttcn"
21gen_links $DIR $FILES
22
23DIR=$BASEDIR/titan.TestPorts.IPL4asp/src
24FILES="IPL4asp_Functions.ttcn IPL4asp_PT.cc IPL4asp_PT.hh IPL4asp_PortType.ttcn IPL4asp_Types.ttcn IPL4asp_discovery.cc IPL4asp_protocol_L234.hh"
25gen_links $DIR $FILES
26
Harald Weltedf327232017-12-28 22:51:51 +010027DIR=../library
Harald Weltedf277252018-02-20 15:49:30 +010028FILES="General_Types.ttcn Osmocom_Types.ttcn GSM_Types.ttcn IPA_Types.ttcn IPA_CodecPort.ttcn
29IPA_CodecPort_CtrlFunct.ttcn IPA_CodecPort_CtrlFunctDef.cc IPA_Emulation.ttcnpp Osmocom_CTRL_Types.ttcn GSUP_Types.ttcn"
Harald Weltedf327232017-12-28 22:51:51 +010030gen_links $DIR $FILES