File: deps.Makefile

package info (click to toggle)
rtpengine 13.5.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,676 kB
  • sloc: ansic: 86,775; perl: 59,422; python: 3,193; sh: 1,037; makefile: 687; asm: 211
file content (15 lines) | stat: -rw-r--r-- 538 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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,${DEB_BUILD_PROFILES}))
	$(top_srcdir)/utils/gen-bcg729-flags >>$@.new
endif
ifneq (,$(filter pkg.ngcp-rtpengine.codec-chain,${DEB_BUILD_PROFILES}))
	$(top_srcdir)/utils/gen-codec-chain-flags >>$@.new
endif
	mv $@.new $@

include $(top_srcdir)/config.mk