mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-26 17:01:56 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16335 d0543943-73ff-0310-b7d9-9358b9ac24b2
26 lines
729 B
Makefile
26 lines
729 B
Makefile
BASE=../../../..
|
|
|
|
TIFF_DIR=$(switch_srcdir)/libs/tiff-3.8.2
|
|
TIFF_BUILDDIR=$(switch_builddir)/libs/tiff-3.8.2
|
|
TIFF_LA=$(TIFF_BUILDDIR)/libtiff/libtiff.la
|
|
|
|
SPANDSP_DIR=$(switch_srcdir)/libs/spandsp
|
|
SPANDSP_BUILDDIR=$(switch_builddir)/libs/spandsp
|
|
SPANDSP_LA=$(SPANDSP_BUILDDIR)/src/libspandsp.la
|
|
|
|
LOCAL_CFLAGS=-I$(SPANDSP_DIR)/src -I$(TIFF_DIR)/libtiff -I$(SPANDSP_BUILDDIR)/src -I$(TIFF_BUILDDIR)/libtiff
|
|
LOCAL_LIBADD=$(SPANDSP_LA)
|
|
|
|
include $(BASE)/build/modmake.rules
|
|
$(MODNAME).lo: $(SPANDSP_LA) $(TIFF_LA)
|
|
|
|
$(SPANDSP_LA): $(TIFF_LA) $(SPANDSP_DIR) $(SPANDSP_DIR)/.update
|
|
cd $(SPANDSP_BUILDDIR) && $(MAKE) -j1
|
|
$(TOUCH_TARGET)
|
|
|
|
$(TIFF_LA): $(TIFF_DIR) $(TIFF_DIR)/.update
|
|
cd $(TIFF_BUILDDIR) && $(MAKE) -j1
|
|
$(TOUCH_TARGET)
|
|
|
|
|