mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-10 10:45:18 -05:00
Add override with EXTRA_CLEAN for lib.mk clean to fix the following warnings from clean target run. Makefile:8: warning: overriding recipe for target 'clean' ../lib.mk:55: warning: ignoring old recipe for target 'clean' Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
8 lines
148 B
Makefile
8 lines
148 B
Makefile
TEST_PROGS := default_file_splice_read.sh
|
|
EXTRA := default_file_splice_read
|
|
all: $(TEST_PROGS) $(EXTRA)
|
|
|
|
include ../lib.mk
|
|
|
|
EXTRA_CLEAN := $(EXTRA)
|