Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: media_tests: Fix Makefile 'clean' target warning

Remove 'clean' target and change TEST_PROGS to TEST_GEN_PROGS so the
common lib.mk 'clean' target clean these generated files. TEST_PROGS
is for shell scripts and not for generated test executables.

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>

+2 -5
+2 -5
tools/testing/selftests/media_tests/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 - TEST_PROGS := media_device_test media_device_open video_device_test 3 - all: $(TEST_PROGS) 2 + TEST_GEN_PROGS := media_device_test media_device_open video_device_test 3 + all: $(TEST_GEN_PROGS) 4 4 5 5 include ../lib.mk 6 - 7 - clean: 8 - rm -fr media_device_test media_device_open video_device_test