From: Jeremy Sowden Date: Sun, 9 Mar 2025 16:41:28 +0000 (+0100) Subject: build: clean `.*.oo.d` cpp dependency files X-Git-Tag: v3.28~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5c23837bc226d460e5b2824c77c755ef82189c2;p=thirdparty%2Fxtables-addons.git build: clean `.*.oo.d` cpp dependency files The `%.oo` recipe in Makefile.iptrules.in creates corresponding `.%.oo.d` dependency files which are not cleaned up. Add them to the files that are removed by the `clean` target. Signed-off-by: Jeremy Sowden --- diff --git a/Makefile.iptrules.in b/Makefile.iptrules.in index 7e58164..016f0be 100644 --- a/Makefile.iptrules.in +++ b/Makefile.iptrules.in @@ -47,7 +47,7 @@ install: ${targets} clean: @for i in ${subdirs_list}; do ${MAKE} -C $$i $@ || exit $$?; done; - rm -f *.oo *.so; + rm -f *.oo .*.oo.d *.so; lib%.so: lib%.oo ${AM_V_CCLD}${CCLD} ${AM_LDFLAGS} -shared ${LDFLAGS} -o $@ $< ${libxtables_LIBS} ${LDLIBS};