fix(build): "make clean" fails

Problem:
"make clean" fails since 03bc23de36.

    make -C runtime/doc clean
    make[1]: *** No rule to make target `clean'.  Stop.
    make: *** [clean] Error 2

Solution:
Update the "clean" target.
This commit is contained in:
Justin M. Keyes 2022-10-04 18:35:32 +02:00
parent 179d2d67d8
commit c651152a9d

View File

@ -138,7 +138,6 @@ test: functionaltest unittest
clean:
+test -d build && $(BUILD_TOOL) -C build clean || true
$(MAKE) -C src/nvim/testdir clean
$(MAKE) -C runtime/doc clean
$(MAKE) -C runtime/indent clean
distclean: