mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-14 01:49:05 +00:00
Do a better job at tracking dependencies into the libs, so libs are re-built when they need to.
Eliminate some more gmakeisms in the modules makefiles git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4629 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
|
||||
BASE=../../../..
|
||||
ILBCLA=$(BASE)/libs/codec/ilbc/libilbc.la
|
||||
LOCAL_CFLAGS=-I$(BASE)/libs/codec/ilbc/src
|
||||
ILBC_DIR=$(BASE)/libs/codec/ilbc
|
||||
ILBCLA=$(ILBC_DIR)/libilbc.la
|
||||
LOCAL_CFLAGS=-I$(ILBC_DIR)/src
|
||||
LOCAL_LIBADD=$(ILBCLA)
|
||||
include $(BASE)/build/modmake.rules
|
||||
|
||||
$(ILBCLA):
|
||||
cd $(BASE)/libs/codec/ilbc && $(MAKE)
|
||||
$(ILBCLA): $(ILBC_DIR) $(ILBC_DIR)/.update
|
||||
cd $(ILBC_DIR) && $(MAKE)
|
||||
$(TOUCH_TARGET)
|
||||
|
Reference in New Issue
Block a user