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.
kamailio/modules/app_mono/Makefile

23 lines
421 B

#
#
include ../../Makefile.defs
auto_gen=
NAME=app_mono.so
BUILDER = $(shell which pkg-config)
ifeq ($(BUILDER),)
DEFS+=-D_REENTRANT -I/usr/include/mono-2.0
LIBS= -lmono-2.0 -lm -lrt -ldl -lpthread
else
DEFS+= $(shell pkg-config --cflags mono-2)
LIBS = $(shell pkg-config --libs mono-2)
endif
DEFS+=-DKAMAILIO_MOD_INTERFACE
SERLIBPATH=../../lib
SER_LIBS+=$(SERLIBPATH)/kcore/kcore
include ../../Makefile.modules