mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-10 11:49:01 +00:00
This purges libcurl from our tree and requires it to be present on the system for building and running FreeSWITCH. FS-353
10 lines
397 B
Makefile
10 lines
397 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_cidlookup
|
|
|
|
mod_LTLIBRARIES = mod_cidlookup.la
|
|
mod_cidlookup_la_SOURCES = mod_cidlookup.c
|
|
mod_cidlookup_la_CFLAGS = $(AM_CFLAGS)
|
|
mod_cidlookup_la_CPPFLAGS = $(CURL_CFLAGS) $(AM_CPPFLAGS)
|
|
mod_cidlookup_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
|
mod_cidlookup_la_LDFLAGS = $(CURL_LIBS) -avoid-version -module -no-undefined -shared
|