Add an 'osmo' prefix to the 'gapk' binary

This is a common practice of all Osmocom executables
to have an 'osmo' prefix. Let's follow this here too.
This commit is contained in:
Vadim Yanitskiy 2017-08-30 19:35:51 +07:00
parent 95e666404e
commit 48206ad2e0
4 changed files with 11 additions and 11 deletions

2
.gitignore vendored
View File

@ -36,7 +36,7 @@ stamp-h1
libgsmhr/refsrc
# final executables
src/gapk
src/osmo-gapk
# temporary/backup files
*.*~

View File

@ -1,6 +1,6 @@
#!/bin/sh
GAPK=./src/gapk
GAPK=./src/osmo-gapk
PCMFILE=$1
BASE=`basename $PCMFILE`

View File

@ -75,16 +75,16 @@ libosmogapk_la_SOURCES += \
$(NULL)
# libosmogapk representative application
bin_PROGRAMS = gapk
bin_PROGRAMS = osmo-gapk
gapk_SOURCES = \
osmo_gapk_SOURCES = \
main.c \
$(NULL)
gapk_LDFLAGS = \
osmo_gapk_LDFLAGS = \
$(LIBOSMOCORE_LIBS) \
$(NULL)
gapk_LDADD = \
osmo_gapk_LDADD = \
$(top_builddir)/src/libosmogapk.la \
$(NULL)

View File

@ -1,13 +1,13 @@
# directory containing the reference files for comparing against
REFDIR=./ref-files
if [ -f ../src/gapk ]; then
GAPK=../src/gapk
elif [ -f `which gapk` ]; then
GAPK=`which gapk`
if [ -f ../src/osmo-gapk ]; then
GAPK=../src/osmo-gapk
elif [ -f `which osmo-gapk` ]; then
GAPK=`which osmo-gapk`
else
exit 1
fi
echo Using gapk found at $GAPK
echo Using osmo-gapk found at $GAPK
FORMATS="amr-efr gsm racal-hr racal-fr racal-efr ti-hr ti-fr ti-efr rtp-efr rtp-hr-etsi rtp-hr-ietf"