diff options
author | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-21 18:26:16 -0400 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-27 10:05:23 -0400 |
commit | eebed11a3d6b013054b130665b48620a969062e9 (patch) | |
tree | 17f04caeb9d22722026bbf4c42b59113f859a338 /tools | |
parent | 8ab02e0962bf91126797fefb9775dd1ffa54d29d (diff) |
selftests: x86: override clean in lib.mk to fix warnings
Add override with EXTRA_CLEAN for lib.mk clean to fix the following
warnings from clean target run.
Makefile:44: 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>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/x86/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/testing/selftests/x86/Makefile b/tools/testing/selftests/x86/Makefile index 38e0a9ca5d71..97f187e2663f 100644 --- a/tools/testing/selftests/x86/Makefile +++ b/tools/testing/selftests/x86/Makefile | |||
@@ -40,8 +40,7 @@ all_32: $(BINARIES_32) | |||
40 | 40 | ||
41 | all_64: $(BINARIES_64) | 41 | all_64: $(BINARIES_64) |
42 | 42 | ||
43 | clean: | 43 | EXTRA_CLEAN := $(BINARIES_32) $(BINARIES_64) |
44 | $(RM) $(BINARIES_32) $(BINARIES_64) | ||
45 | 44 | ||
46 | $(BINARIES_32): $(OUTPUT)/%_32: %.c | 45 | $(BINARIES_32): $(OUTPUT)/%_32: %.c |
47 | $(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl -lm | 46 | $(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl -lm |