You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rtpengine/lib/deps.Makefile

16 lines
587 B

# Define build flags for used dependencies.
$(top_srcdir)/config.mk: $(top_srcdir)/utils/gen-common-flags \
$(top_srcdir)/utils/gen-bcg729-flags \
$(top_srcdir)/utils/gen-codec-chain-flags
$(top_srcdir)/utils/gen-common-flags >$@.new
ifeq (,$(filter pkg.ngcp-rtpengine.nobcg729 pkg.rtpengine.nobcg729,$(DEB_BUILD_PROFILES)))
$(top_srcdir)/utils/gen-bcg729-flags >>$@.new
endif
ifneq (,$(filter pkg.ngcp-rtpengine.codec-chain pkg.rtpengine.codec-chain,$(DEB_BUILD_PROFILES)))
$(top_srcdir)/utils/gen-codec-chain-flags >>$@.new
endif
mv $@.new $@
include $(top_srcdir)/config.mk