tools/counter: Makefile: Remove lingering 'include' directories on make clean
authorRong Tao <rongtao@cestc.cn>
Sat, 22 Apr 2023 14:27:38 +0000 (22:27 +0800)
committerWilliam Breathitt Gray <william.gray@linaro.org>
Tue, 9 May 2023 23:17:17 +0000 (19:17 -0400)
`make` creates 'include' directories where necessary, so remove them as
appropriate on `make clean`.

Signed-off-by: Rong Tao <rongtao@cestc.cn>
Link: https://lore.kernel.org/r/tencent_F85E314661100B0CE2845EB27E2E2F558C09@qq.com/
Signed-off-by: William Breathitt Gray <william.gray@linaro.org>
tools/counter/Makefile

index 8843f0f..a0f4cab 100644 (file)
@@ -40,6 +40,7 @@ $(OUTPUT)counter_example: $(COUNTER_EXAMPLE)
 clean:
        rm -f $(ALL_PROGRAMS)
        rm -rf $(OUTPUT)include/linux/counter.h
+       rmdir -p $(OUTPUT)include/linux
        find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete
 
 install: $(ALL_PROGRAMS)