From c3561bec47463d84127e4dcbca4df14a5d9f2520 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Mon, 27 Apr 2020 12:03:09 -0400 Subject: [PATCH] honour with_transcoding=no in top level makefile Change-Id: I6059bbd7f8fda001333c2e441352eed3f08ef851 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index f347f3fbe..0d1030290 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ RTPENGINE_ROOT_DIR=. +with_transcoding ?= yes include lib/lib.Makefile @@ -6,7 +7,9 @@ include lib/lib.Makefile all: $(MAKE) -C daemon +ifeq ($(with_transcoding),yes) $(MAKE) -C recording-daemon +endif $(MAKE) -C iptables-extension .PHONY: with-kernel