Osmocom test suites in TTCN-3 (Eclipse Titan)
https://osmocom.org/projects/core-testing-infra
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
363 B
18 lines
363 B
#!/bin/sh
|
|
|
|
NAME=CCID_Tests
|
|
|
|
FILES="
|
|
*.ttcn
|
|
Native_FunctionDefs.cc
|
|
USB_PT.cc
|
|
"
|
|
|
|
export CPPFLAGS_TTCN3="
|
|
"
|
|
|
|
../regen-makefile.sh -e $NAME $FILES
|
|
|
|
#sed -i -e 's/^LINUX_LIBS = -lxml2/LINUX_LIBS = -lxml2 -lusb/' Makefile
|
|
sed -i -e '/^LINUX_LIBS/ s/$/ `pkg-config --libs libusb-1.0`/' Makefile
|
|
sed -i -e '/^CPPFLAGS/ s/$/ `pkg-config --cflags libusb-1.0`/' Makefile
|
|
|