We now have rules in the main Makefile to ensure that the library is built before the ulib test-binaries. Drop the unnecessary dependency. Also the link is done entirely in the main Makefile, so drop the flags as well. Add a comment to explain what is going on. Signed-off-by: Simon Glass <sjg@chromium.org>
11 lines
305 B
Makefile
11 lines
305 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2025 Simon Glass <sjg@chromium.org>
|
|
|
|
# We don't need anything here as the files in this directory are directly built
|
|
# by the main Makefile
|
|
#
|
|
# We cannot use 'obj-y += ulib/' in test/Makefile since we won't want these
|
|
# files included in the main build.
|
|
|