version 4.0.6
[ric-plt/e2.git] / RIC-E2-TERMINATION / 3rdparty / asnTextFiles / header.sh
1 #!/usr/bin/env bash
2 mkdir -p E2APtmpFiles
3 mkdir -p E2SMtmpFiles
4 cat E2APextFileList.txt | xargs mv -t E2APtmpFiles/.
5 cat E2SMextFileList.txt | xargs mv -t E2SMtmpFiles/.
6 cd ../oranE2
7 rm
8 find . -type f -name \*.c -exec ../int/autogen/autogen -i --no-top-level-comment -l codev {} \;
9 find . -type f -name \*.h -exec ../int/autogen/autogen -i --no-top-level-comment -l codev {} \;
10 mv ../asnTextFiles/E2APtmpFiles/* .
11 rmdir ../asnTextFiles/E2APtmpFiles
12 rm converter-example.c
13 cd ../oranE2SM
14 find . -type f -name \*.c -exec ../int/autogen/autogen -i --no-top-level-comment -l codev {} \;
15 find . -type f -name \*.h -exec ../int/autogen/autogen -i --no-top-level-comment -l codev {} \;
16 mv ../asnTextFiles/E2SMtmpFiles/* .
17 rmdir ../asnTextFiles/E2SMtmpFiles
18 rm converter-example.c
19
20