mirror of https://github.com/sipwise/kamailio.git
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.
108 lines
2.3 KiB
108 lines
2.3 KiB
# $Id$
|
|
COREPATH=../..
|
|
include $(COREPATH)/Makefile.defs
|
|
include $(COREPATH)/Makefile.targets
|
|
|
|
auto_gen=
|
|
RELEASE=0.2
|
|
UTIL_SRC_NAME=sercmd
|
|
ifeq ($(FLAVOUR),kamailio)
|
|
NAME=kamcmd
|
|
else
|
|
NAME=sercmd
|
|
endif
|
|
|
|
readline_locations= /usr/include/readline/readline.h \
|
|
$(LOCALBASE)/include/readline/readline.h
|
|
|
|
use_readline ?=
|
|
ifneq (,$(MAKECMDGOALS))
|
|
ifeq (,$(filter-out $(nodep_targets),$(MAKECMDGOALS)))
|
|
#set it to empty, we don't need to detect/use it for clean, doc a.s.o
|
|
override use_readline:=
|
|
quiet=1
|
|
endif
|
|
endif #ifneq (,$(MAKECMDGOALS))
|
|
|
|
|
|
# erase common DEFS (not needed)
|
|
C_DEFS:=
|
|
DEFS:= -DNAME='"$(NAME)"' -DSRNAME='"$(MAIN_NAME)"' -DVERSION='"$(RELEASE)"' \
|
|
$(filter -D%HAVE -DARCH% -DOS% -D__CPU% -D__OS%, $(DEFS))
|
|
|
|
# use proper libs (we can't rely on LIBS value since we might be called
|
|
# from a module Makefile)
|
|
#LIBS:=$(filter-out -lfl -ldl -lpthread -lssl -lcrypto, $(LIBS))
|
|
|
|
ifeq ($(OS), linux)
|
|
LIBS:= -lresolv
|
|
endif
|
|
ifeq ($(OS), solaris)
|
|
LIBS:= -lresolv -L$(LOCALBASE)/lib -lxnet -lnsl
|
|
endif
|
|
ifeq ($(OS), freebsd)
|
|
LIBS:=
|
|
endif
|
|
ifeq ($(OS), dragonfly)
|
|
LIBS:= -L$(LOCALBASE)/lib
|
|
endif
|
|
ifeq ($(OS), openbsd)
|
|
LIBS:=
|
|
endif
|
|
ifeq ($(OS), netbsd)
|
|
LIBS:=
|
|
endif
|
|
ifeq ($(OS), darwin)
|
|
LIBS:= -lresolv
|
|
endif
|
|
ifneq (,$(findstring cygwin, $(OS)))
|
|
LIBS:= -lresolv
|
|
endif
|
|
|
|
ifeq ($(use_readline),)
|
|
readline_path := $(shell \
|
|
for r in $(readline_locations) ""; do \
|
|
if [ -r "$$r" ] ; then echo $$r; exit; fi; \
|
|
done;\
|
|
)
|
|
ifneq ($(readline_path),)
|
|
use_readline := 1
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(use_readline),1)
|
|
DEFS+=-DUSE_READLINE
|
|
LIBS+=-lreadline -lncurses
|
|
endif
|
|
|
|
|
|
include $(COREPATH)/Makefile.utils
|
|
|
|
ifeq (,$(quiet))
|
|
ifeq ($(use_readline),1)
|
|
$(info readline detected ($(readline_path)) )
|
|
$(info command completion enabled)
|
|
else
|
|
$(info "no readline include files detected, disabling readline support")
|
|
$(info "command completion disabled" )
|
|
$(info "to force readline support try 'make use_readline=1'")
|
|
endif
|
|
endif # ifeq (,$(quiet))
|
|
|
|
$(NAME).o:
|
|
|
|
.PHONY: msg
|
|
msg:
|
|
@if [ "$(use_readline)" = "1" ]; then \
|
|
echo; echo "readline detected ($(readline_path)):"; \
|
|
echo "command completion enabled"; echo ; \
|
|
else \
|
|
echo ; \
|
|
echo "no readline include files detected, disabling readline support";\
|
|
echo "command completion disabled"; \
|
|
echo "(to force readline support try 'make use_readline=1')";\
|
|
echo ; \
|
|
fi
|
|
|
|
modules:
|