rmbox: change bins name to sof-logger sof-rmbox

Change binary names:
from logger to sof-logger and
from rmbox to sof-rmbox

Signed-off-by: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
This commit is contained in:
Bartosz Kokoszko 2018-10-12 14:56:41 +02:00
parent 9033d35058
commit c8f671b746
2 changed files with 7 additions and 7 deletions

View File

@ -1,12 +1,12 @@
bin_PROGRAMS = rmbox logger
bin_PROGRAMS = sof-rmbox sof-logger
rmbox_SOURCES = \
sof_rmbox_SOURCES = \
rmbox.c \
rmbox_convert.c
logger_SOURCES = \
sof_logger_SOURCES = \
rmbox.c \
logger_convert.c
logger_CFLAGS = \
sof_logger_CFLAGS = \
-DLOGGER_FORMAT

View File

@ -22,9 +22,9 @@
#include "convert.h"
#ifdef LOGGER_FORMAT
#define APP_NAME "logger"
#define APP_NAME "sof-logger"
#else
#define APP_NAME "rmbox"
#define APP_NAME "sof-rmbox"
#endif
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))