mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-25 04:01:55 +00:00
FS-5040 --resolve
This commit is contained in:
parent
7790cc5679
commit
d1ecaa53d9
30
Makefile.am
30
Makefile.am
@ -34,7 +34,6 @@ DEFAULT_SOUNDS=en-us-callie-8000
|
|||||||
fi; \
|
fi; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
sounds: sounds-en-us-callie-8000
|
sounds: sounds-en-us-callie-8000
|
||||||
sounds-install: sounds-en-us-callie-8000-install
|
sounds-install: sounds-en-us-callie-8000-install
|
||||||
sounds-ru: sounds-ru-RU-elena-8000
|
sounds-ru: sounds-ru-RU-elena-8000
|
||||||
@ -72,6 +71,35 @@ cd-moh-install: uhd-moh-install sounds-music-48000-install
|
|||||||
all-recursive: libfreeswitch.la
|
all-recursive: libfreeswitch.la
|
||||||
clean-recusive: clean_core
|
clean-recusive: clean_core
|
||||||
install-recursive: install-libLTLIBRARIES install-binPROGRAMS
|
install-recursive: install-libLTLIBRARIES install-binPROGRAMS
|
||||||
|
$(RECURSIVE_TARGETS): freeswitch
|
||||||
|
@failcom='exit 1'; \
|
||||||
|
for f in x $$MAKEFLAGS; do \
|
||||||
|
case $$f in \
|
||||||
|
*=* | --[!k]*);; \
|
||||||
|
*k*) failcom='fail=yes';; \
|
||||||
|
esac; \
|
||||||
|
done; \
|
||||||
|
dot_seen=no; \
|
||||||
|
target=`echo $@ | sed s/-recursive//`; \
|
||||||
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||||
|
echo "Making $$target in $$subdir"; \
|
||||||
|
if test "$$subdir" = "."; then \
|
||||||
|
dot_seen=yes; \
|
||||||
|
local_target="$$target-am"; \
|
||||||
|
else \
|
||||||
|
local_target="$$target"; \
|
||||||
|
fi; \
|
||||||
|
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||||
|
|| eval $$failcom; \
|
||||||
|
done; \
|
||||||
|
if test "$$dot_seen" = "no"; then \
|
||||||
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||||
|
fi; \
|
||||||
|
if test -z "$$fail" ; then \
|
||||||
|
cd $(top_builddir)/build && $(MAKE) $(AM_MAKEFLAGS) $$target || exit 1; \
|
||||||
|
else \
|
||||||
|
exit 1; \
|
||||||
|
fi ;
|
||||||
|
|
||||||
CORE_CFLAGS = `$(switch_builddir)/libs/apr/apr-1-config --cflags --cppflags --includes`
|
CORE_CFLAGS = `$(switch_builddir)/libs/apr/apr-1-config --cflags --cppflags --includes`
|
||||||
CORE_CFLAGS += `$(switch_builddir)/libs/apr-util/apu-1-config --includes`
|
CORE_CFLAGS += `$(switch_builddir)/libs/apr-util/apu-1-config --includes`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user