Since we changed the name of the project to sip-router, we should also rename the name of the binary being produced from ser to sip-router. We should also replace 'ser' with 'sip-router' in directory names.
Signed-off-by: Jan Janak jan@iptel.org --- Makefile.defs | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/Makefile.defs b/Makefile.defs index a5bdf2b..e4f1642 100644 --- a/Makefile.defs +++ b/Makefile.defs @@ -97,7 +97,7 @@ export makefile_defs
$(info normal Makefile.defs exec) # main binary name -MAIN_NAME=ser +MAIN_NAME=sip-router
#version number VERSION = 2 @@ -162,37 +162,37 @@ endif CC_EXTRA_OPTS ?=
# dirs -cfg_dir = etc/ser/ +cfg_dir = etc/sip-router/ bin_dir = sbin/ -share_dir = share/ser/ -modules_dir = lib/ser/modules/ -lib_dir = lib/ser/ +share_dir = share/sip-router/ +modules_dir = lib/sip-router/modules/ +lib_dir = lib/sip-router/ ifeq ($(OS), linux) - doc_dir = share/doc/ser/ + doc_dir = share/doc/sip-router/ man_dir = share/man/ LOCALBASE ?= /usr/local else ifeq ($(OS), freebsd) - doc_dir = share/doc/ser/ + doc_dir = share/doc/sip-router/ man_dir = man/ LOCALBASE ?= /usr/local else ifeq ($(OS), openbsd) - doc_dir = share/doc/ser/ + doc_dir = share/doc/sip-router/ man_dir = man/ LOCALBASE ?= /usr/local else ifeq ($(OS), netbsd) - doc_dir = share/doc/ser + doc_dir = share/doc/sip-router man_dir = man/ LOCALBASE ?= /usr/pkg else ifeq ($(OS), darwin) - doc_dir = share/doc/ser/ + doc_dir = share/doc/sip-router/ man_dir = man/ LOCALBASE ?= /usr/local else - doc_dir = doc/ser/ + doc_dir = doc/sip-router/ man_dir = man/ LOCALBASE ?= /usr/local endif