blob: ba07733502736735534b22cd83c5d8141135ecf5 [file] [log] [blame]
Harald Welte164a28c2017-07-14 19:25:31 +02001#!/bin/sh
2
Harald Welte68079822017-12-12 16:30:53 +01003BASEDIR=../deps
Harald Welte164a28c2017-07-14 19:25:31 +02004
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 TCCInterface.cc TCCInterface_ip.h"
Harald Welte164a28c2017-07-14 19:25:31 +020016gen_links $DIR $FILES
17
18DIR=$BASEDIR/titan.TestPorts.Common_Components.Socket-API/src
19FILES="Socket_API_Definitions.ttcn"
20gen_links $DIR $FILES
21
22DIR=$BASEDIR/titan.TestPorts.IPL4asp/src
23FILES="IPL4asp_Functions.ttcn IPL4asp_PT.cc IPL4asp_PT.hh IPL4asp_PortType.ttcn IPL4asp_Types.ttcn IPL4asp_discovery.cc IPL4asp_protocol_L234.hh"
24gen_links $DIR $FILES
25
Harald Welte9a907b32017-07-15 10:34:27 +020026DIR=$BASEDIR/titan.TestPorts.TELNETasp/src
27FILES="TELNETasp_PT.cc TELNETasp_PT.hh TELNETasp_PortType.ttcn"
28gen_links $DIR $FILES
Harald Welte3b8bdd62017-07-19 19:57:26 +020029
30DIR=../library
Harald Weltef9764922017-08-20 22:47:44 +020031FILES="GSMTAP_PortType.ttcn GSMTAP_Types.ttcn GSM_SystemInformation.ttcn GSM_RR_Types.ttcn RLCMAC_CSN1_Types.ttcn GSM_Types.ttcn IPL4_GSMTAP_CtrlFunct.ttcn IPL4_GSMTAP_CtrlFunctDef.cc Osmocom_Types.ttcn General_Types.ttcn Osmocom_VTY_Functions.ttcn"
Harald Welte3b8bdd62017-07-19 19:57:26 +020032gen_links $DIR $FILES
33