From 5cb1002949bbcefebf58b9853f339a9fb9739eaa Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Tue, 28 Jan 2025 13:39:36 +0100 Subject: [PATCH] MT#61993 build: Declare all to be the default goal This makes sure the target is the default, regardless of the place where it gets declared, so that we do not get surprises due to targets declared in includes that might happened to be performed before the default target. Change-Id: I2fab47ccb46d68dc56332acef966e369c5183c07 --- Makefile | 2 ++ lib/common.Makefile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 5bddebc12..aaef6083b 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +.DEFAULT_GOAL := all + RTPENGINE_ROOT_DIR=. with_transcoding ?= yes diff --git a/lib/common.Makefile b/lib/common.Makefile index 401a834cf..2b0e39b82 100644 --- a/lib/common.Makefile +++ b/lib/common.Makefile @@ -1,3 +1,5 @@ +.DEFAULT_GOAL := all + include ../lib/lib.Makefile CFLAGS += -fPIE