freeswitch/src/mod/applications/mod_enum/Makefile.am

17 lines
496 B
Makefile
Raw Normal View History

2014-02-27 19:16:54 +00:00
include $(top_srcdir)/build/modmake.rulesam
MODNAME=mod_enum
if HAVE_LDNS
2014-02-27 19:16:54 +00:00
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
2014-02-27 19:16:54 +00:00
mod_enum_la_LDFLAGS = -avoid-version -module -no-undefined -shared
else
install: error
all: error
error:
2014-05-02 22:35:37 +00:00
$(error You must install your distros libldns-dev or ldns-devel to build mod_enum)
endif