From 5cba21bad5383a4d2c4f7da5df7395e0c3b9eba3 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Fri, 16 Jun 2023 23:55:50 -0300 Subject: build: rename MOD vars to EXTRA vars To make them less confusing, as they are extra dependencies, not files that are specific to the module. Commands used to search and replace: $ git grep -IFlz -e 'MOD_HDRS' -e 'MOD_OBJS' -- src | xargs -0 -I '{}' sh -c "printf '%s\n' \"\$(sed \ -e 's/MOD_HDRS/EXTRA_HDRS/g' \ -e 's/MOD_OBJS/EXTRA_OBJS/g' '{}')\" >'{}'" Added on commit f5b1ccaad ("makefiles: move extra deps into new MOD vars", 2022-05-07) / PR #5478. --- src/fsec-optimize/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/fsec-optimize') diff --git a/src/fsec-optimize/Makefile b/src/fsec-optimize/Makefile index 4941f13b1..5a14726a0 100644 --- a/src/fsec-optimize/Makefile +++ b/src/fsec-optimize/Makefile @@ -5,7 +5,7 @@ ROOT = ../.. PROG = fsec-optimize TARGET = $(PROG) -MOD_HDRS = ../include/common.h ../include/seccomp.h ../include/syscall.h -MOD_OBJS = ../lib/common.o ../lib/errno.o +EXTRA_HDRS = ../include/common.h ../include/seccomp.h ../include/syscall.h +EXTRA_OBJS = ../lib/common.o ../lib/errno.o include $(ROOT)/src/prog.mk -- cgit v1.2.3-54-g00ecf