Skip to content

Commit 5dd15cc

Browse files
zhang jiaokwilczynski
authored andcommitted
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/20240902041240.5475-1-zhangjiao2@cmss.chinamobile.com Signed-off-by: zhang jiao <zhangjiao2@cmss.chinamobile.com> [kwilczynski: commit log, move .*.cmd before .*.d to align with other Makefiles, don't remove the newline] Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org>
1 parent 8400291 commit 5dd15cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/pci/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $(OUTPUT)pcitest: $(PCITEST_IN)
4242
clean:
4343
rm -f $(ALL_PROGRAMS)
4444
rm -rf $(OUTPUT)include/
45-
find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete
45+
find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
4646

4747
install: $(ALL_PROGRAMS)
4848
install -d -m 755 $(DESTDIR)$(bindir); \

0 commit comments

Comments
 (0)