mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-23 18:04:07 +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
371 B
Makefile
10 lines
371 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_httapi
|
|
|
|
mod_LTLIBRARIES = mod_httapi.la
|
|
mod_httapi_la_SOURCES = mod_httapi.c
|
|
mod_httapi_la_CFLAGS = $(AM_CFLAGS)
|
|
mod_httapi_la_CPPFLAGS = $(CURL_CFLAGS) $(AM_CPPFLAGS)
|
|
mod_httapi_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
|
mod_httapi_la_LDFLAGS = $(CURL_LIBS) -avoid-version -module -no-undefined -shared
|