mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-25 02:51:30 +00:00
17 lines
496 B
Makefile
17 lines
496 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_enum
|
|
|
|
if HAVE_LDNS
|
|
mod_LTLIBRARIES = mod_enum.la
|
|
mod_enum_la_SOURCES = mod_enum.c
|
|
mod_enum_la_CFLAGS = $(AM_CFLAGS)
|
|
mod_enum_la_CPPFLAGS = $(LDNS_CFLAGS) $(AM_CPPFLAGS)
|
|
mod_enum_la_LIBADD = $(LDNS_LIBS) $(switch_builddir)/libfreeswitch.la
|
|
mod_enum_la_LDFLAGS = -avoid-version -module -no-undefined -shared
|
|
else
|
|
install: error
|
|
all: error
|
|
error:
|
|
$(error You must install your distros libldns-dev or ldns-devel to build mod_enum)
|
|
endif
|