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/fseccomp/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/fseccomp') diff --git a/src/fseccomp/Makefile b/src/fseccomp/Makefile index 9bf4c050b..9517df8ef 100644 --- a/src/fseccomp/Makefile +++ b/src/fseccomp/Makefile @@ -1,7 +1,9 @@ +ROOT = ../.. +-include $(ROOT)/config.mk + .PHONY: all all: fseccomp -ROOT = ../.. include $(ROOT)/src/common.mk %.o : %.c $(H_FILE_LIST) ../include/common.h ../include/syscall.h $(ROOT)/config.mk -- cgit v1.2.3-54-g00ecf