From 3dcc7fa38f065fc1d15d07ed047ec37111379928 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Tue, 25 Oct 2022 15:08:02 -0300 Subject: makefiles: rename common.mk to prog.mk For clarity, as it is included by the Makefiles that create programs and non-shared-objects, but not by the ones that create shared objects (see src/so.mk). Commands used to move and search and replace: $ git mv src/common.mk src/prog.mk $ git grep -IFlz 'common.mk' -- src | xargs -0 -I '{}' sh -c \ "printf '%s\n' \"\$(sed 's/common.mk/prog.mk/' '{}')\" >'{}'" --- src/fsec-print/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fsec-print') diff --git a/src/fsec-print/Makefile b/src/fsec-print/Makefile index b7849391d..cbe061d45 100644 --- a/src/fsec-print/Makefile +++ b/src/fsec-print/Makefile @@ -7,4 +7,4 @@ TARGET = $(PROG) MOD_HDRS = ../include/common.h ../include/seccomp.h ../include/syscall.h MOD_OBJS = ../lib/common.o ../lib/errno.o ../lib/syscall.o -include $(ROOT)/src/common.mk +include $(ROOT)/src/prog.mk -- cgit v1.2.3-54-g00ecf