From 72345b7305e1cc7e079c83d805f3af979d7493cd Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Fri, 29 Jul 2022 22:54:52 -0300 Subject: makefiles: include config.mk directly Instead of including it through src/common.mk. This allows each makefile to directly override any value defined in config.mk. --- src/common.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/common.mk') diff --git a/src/common.mk b/src/common.mk index 7fc23c6e7..30ba2b494 100644 --- a/src/common.mk +++ b/src/common.mk @@ -1,8 +1,6 @@ # Common definitions for building C programs and non-shared objects. # -# Note: "ROOT" must be defined before including this file. - --include $(ROOT)/config.mk +# Note: $(ROOT)/config.mk must be included before this file. H_FILE_LIST = $(sort $(wildcard *.h)) C_FILE_LIST = $(sort $(wildcard *.c)) -- cgit v1.2.3-54-g00ecf