aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtracelog/Makefile
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-06-23 02:51:52 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-06-30 05:32:07 -0300
commit83ae0ed8379e2e00815cbe60e2e512665e48c1ed (patch)
tree2f7abf48abad397bffcfe6add4d949b3557df95b /src/libtracelog/Makefile
parentbuild: reduce autoconf input files from 32 to 2 (diff)
downloadfirejail-83ae0ed8379e2e00815cbe60e2e512665e48c1ed.tar.gz
firejail-83ae0ed8379e2e00815cbe60e2e512665e48c1ed.tar.zst
firejail-83ae0ed8379e2e00815cbe60e2e512665e48c1ed.zip
makefiles: stop failing when config.mk does not exist
This allows running `make clean` and `make distclean` (and possibly others) without having to run ./configure beforehand. Note that some packaging-related targets still depend on the existence of generated files. For example: * dist: config.mk * deb: config.sh Commands used to search and replace: $ git grep -Elz 'include *([^ ]*/)?config.mk' | xargs -0 -I '{}' \ sh -c "printf '%s\n' \ \"\$(sed -E 's|^include *(([^ ]*/)?config.mk)|-include \1|' '{}')\" >'{}'" Relates to #5140.
Diffstat (limited to 'src/libtracelog/Makefile')
-rw-r--r--src/libtracelog/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtracelog/Makefile b/src/libtracelog/Makefile
index d09a8aa1c..1a3ab1ba5 100644
--- a/src/libtracelog/Makefile
+++ b/src/libtracelog/Makefile
@@ -1,5 +1,5 @@
1ROOT = ../.. 1ROOT = ../..
2include $(ROOT)/config.mk 2-include $(ROOT)/config.mk
3 3
4H_FILE_LIST = $(sort $(wildcard *.h)) 4H_FILE_LIST = $(sort $(wildcard *.h))
5C_FILE_LIST = $(sort $(wildcard *.c)) 5C_FILE_LIST = $(sort $(wildcard *.c))