mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 10:31:13 +00:00
19 lines
368 B
Makefile
19 lines
368 B
Makefile
|
BASE=../../../..
|
||
|
YAMLLIB=$(BASE)/libs/yaml
|
||
|
LIBYAML_A=$(YAMLLIB)/src/.libs/libyaml.a
|
||
|
LOCAL_CFLAGS=-I$(YAMLLIB)/include
|
||
|
LOCAL_LIBADD=$(LIBYAML_A)
|
||
|
VERBOSE=1
|
||
|
|
||
|
include $(BASE)/build/modmake.rules
|
||
|
|
||
|
local_depend: $(LIBYAML_A)
|
||
|
|
||
|
$(LIBYAML_A):
|
||
|
cd $(YAMLLIB) && ./configure $(DEFAULT_ARGS) --disable-shared
|
||
|
cd $(YAMLLIB) && $(MAKE)
|
||
|
|
||
|
yamlclean:
|
||
|
cd $(YAMLLIB) && $(MAKE) clean
|
||
|
|