mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-25 10:54:45 +00:00
11 lines
283 B
Makefile
11 lines
283 B
Makefile
|
BASE=../../../..
|
||
|
|
||
|
AMR_DIR=$(BASE)/libs/amrwb
|
||
|
AMR_A=$(AMR_DIR)/libamrwb.a
|
||
|
|
||
|
LOCAL_INSERT_CFLAGS=if test -d $(AMR_DIR); then echo "-I$(AMR_DIR)" ; else echo "-DAMRWB_PASSTHROUGH" ; fi ;
|
||
|
LOCAL_INSERT_LDFLAGS=test ! -d $(AMR_DIR) || echo "$(AMR_A)";
|
||
|
|
||
|
|
||
|
include $(BASE)/build/modmake.rules
|