aboutsummaryrefslogtreecommitdiffstats
path: root/src/fnet
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-06-16 23:55:50 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-06-24 12:00:55 -0300
commit5cba21bad5383a4d2c4f7da5df7395e0c3b9eba3 (patch)
tree83c0b5d8ba046b4de15e38829c6454b65937c7fe /src/fnet
parentbuild: remove MOD_SRCS variable (diff)
downloadfirejail-5cba21bad5383a4d2c4f7da5df7395e0c3b9eba3.tar.gz
firejail-5cba21bad5383a4d2c4f7da5df7395e0c3b9eba3.tar.zst
firejail-5cba21bad5383a4d2c4f7da5df7395e0c3b9eba3.zip
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.
Diffstat (limited to 'src/fnet')
-rw-r--r--src/fnet/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fnet/Makefile b/src/fnet/Makefile
index 8efc6d26b..50bfdfffd 100644
--- a/src/fnet/Makefile
+++ b/src/fnet/Makefile
@@ -5,7 +5,7 @@ ROOT = ../..
5PROG = fnet 5PROG = fnet
6TARGET = $(PROG) 6TARGET = $(PROG)
7 7
8MOD_HDRS = ../include/common.h ../include/libnetlink.h 8EXTRA_HDRS = ../include/common.h ../include/libnetlink.h
9MOD_OBJS = ../lib/common.o ../lib/libnetlink.o 9EXTRA_OBJS = ../lib/common.o ../lib/libnetlink.o
10 10
11include $(ROOT)/src/prog.mk 11include $(ROOT)/src/prog.mk