diff options
author | zhang jiao <[email protected]> | 2024-09-02 12:12:40 +0800 |
---|---|---|
committer | Krzysztof Wilczyński <[email protected]> | 2024-09-13 22:37:06 +0000 |
commit | 5dd15cce0c5426fff7b30c792d908e93646cd8c5 (patch) | |
tree | 0f53e6235807d9416a87671382ca87aa7d385c3b | |
parent | 8400291e289ee6b2bf9779ff1c83a291501f017b (diff) |
tools: PCI: Remove .*.cmd files with make clean
Remove any leftover .*.cmd files with make clean.
No functional changes intended.
Link: https://lore.kernel.org/linux-pci/[email protected]
Signed-off-by: zhang jiao <[email protected]>
[kwilczynski: commit log, move .*.cmd before .*.d to
align with other Makefiles, don't remove the newline]
Signed-off-by: Krzysztof Wilczyński <[email protected]>
-rw-r--r-- | tools/pci/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pci/Makefile b/tools/pci/Makefile index 57744778b518..62d41f1a1e2c 100644 --- a/tools/pci/Makefile +++ b/tools/pci/Makefile @@ -42,7 +42,7 @@ $(OUTPUT)pcitest: $(PCITEST_IN) clean: rm -f $(ALL_PROGRAMS) rm -rf $(OUTPUT)include/ - find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete + find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete install: $(ALL_PROGRAMS) install -d -m 755 $(DESTDIR)$(bindir); \ |