Skip to content

Commit 28dff09

Browse files
committed
maint: fix "make maintainer-clean" not working in tests/functional
Signed-off-by: Jan Pokorný <[email protected]>
1 parent e5530b6 commit 28dff09

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tests/functional/GNUmakefile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ all check:
33
@echo "Use 'make $@' within particular subdirectories"
44
install: force
55
# definitely not desired to install anything from this subtree
6-
distclean:
7-
# following is a nasty hack to keep "make distclean" succeeding
8-
# (problem mostly arises from shared object files and hence shared
9-
# compiler-generated makefile includes which are swiped when
10-
# processing one subdir and missing as hard error for the other)
6+
distclean maintainer-clean:
7+
# following is a nasty hack to keep "make distclean" (and
8+
# ~ "maintainer-clean") succeeding (problem mostly arises from
9+
# shared object files and hence shared compiler-generated makefile
10+
# includes, which are swiped when processing one subdir and then
11+
# missing, as a hard error, for the other)
1112
@$(MAKE) -C log_external $@
1213
@mkdir .deps
1314
@touch .deps/log_client.Po .deps/log_interlib.Plo .deps/log_interlib_client.Po
@@ -17,4 +18,4 @@ distclean:
1718
@$(MAKE) -f Makefile $@
1819
force: ;
1920

20-
.PHONY: check distclean force install
21+
.PHONY: check distclean force install maintainer-clean

0 commit comments

Comments
 (0)