Merge pull request #105 from bkokoszx/sof-logger

rmbox: change binary names of logger and rmbox
This commit is contained in:
Liam Girdwood 2018-10-15 16:31:37 +01:00 committed by GitHub
commit 0e1680532d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 = \
-DLOGGER_FORMAT
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]))