aboutsummaryrefslogtreecommitdiffstats
path: root/src/fldd
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-07-29 22:54:52 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-11-21 16:59:43 -0300
commit72345b7305e1cc7e079c83d805f3af979d7493cd (patch)
tree96cccb324b48b6a06a24c272ae25482d476365b7 /src/fldd
parentMakefile: put the all target after variables (diff)
downloadfirejail-72345b7305e1cc7e079c83d805f3af979d7493cd.tar.gz
firejail-72345b7305e1cc7e079c83d805f3af979d7493cd.tar.zst
firejail-72345b7305e1cc7e079c83d805f3af979d7493cd.zip
makefiles: include config.mk directly
Instead of including it through src/common.mk. This allows each makefile to directly override any value defined in config.mk.
Diffstat (limited to 'src/fldd')
-rw-r--r--src/fldd/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fldd/Makefile b/src/fldd/Makefile
index d9a70529b..899efb597 100644
--- a/src/fldd/Makefile
+++ b/src/fldd/Makefile
@@ -1,7 +1,9 @@
1ROOT = ../..
2-include $(ROOT)/config.mk
3
1.PHONY: all 4.PHONY: all
2all: fldd 5all: fldd
3 6
4ROOT = ../..
5include $(ROOT)/src/common.mk 7include $(ROOT)/src/common.mk
6 8
7%.o : %.c $(H_FILE_LIST) ../include/common.h ../include/syscall.h ../include/ldd_utils.h $(ROOT)/config.mk 9%.o : %.c $(H_FILE_LIST) ../include/common.h ../include/syscall.h ../include/ldd_utils.h $(ROOT)/config.mk