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/fcopy/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fcopy') diff --git a/src/fcopy/Makefile b/src/fcopy/Makefile index f7d063a1e..27054627c 100644 --- a/src/fcopy/Makefile +++ b/src/fcopy/Makefile @@ -7,4 +7,4 @@ TARGET = $(PROG) MOD_HDRS = ../include/common.h ../include/syscall.h MOD_OBJS = ../lib/common.o -include $(ROOT)/src/common.mk +include $(ROOT)/src/prog.mk -- cgit v1.2.3-54-g00ecf