aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/Makefile
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-10-25 15:08:02 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-11-21 17:37:17 -0300
commit3dcc7fa38f065fc1d15d07ed047ec37111379928 (patch)
treeea2354a46bdb661158c4a7f3e2fb001ad042748b /src/lib/Makefile
parentmakefiles: deduplicate lib makefiles into so.mk (diff)
downloadfirejail-3dcc7fa38f065fc1d15d07ed047ec37111379928.tar.gz
firejail-3dcc7fa38f065fc1d15d07ed047ec37111379928.tar.zst
firejail-3dcc7fa38f065fc1d15d07ed047ec37111379928.zip
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/' '{}')\" >'{}'"
Diffstat (limited to 'src/lib/Makefile')
-rw-r--r--src/lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Makefile b/src/lib/Makefile
index 4e44eae62..f5b92e389 100644
--- a/src/lib/Makefile
+++ b/src/lib/Makefile
@@ -3,7 +3,7 @@ ROOT = ../..
3 3
4TARGET = lib 4TARGET = lib
5 5
6include $(ROOT)/src/common.mk 6include $(ROOT)/src/prog.mk
7 7
8.PHONY: lib 8.PHONY: lib
9lib: $(OBJS) 9lib: $(OBJS)