mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
66fb5a29bb
Apply the pre-commit hook whitespace fixes to all files in the repo. (Line endings, blank lines at end of file, trailing whitespace)
8 lines
367 B
Makefile
8 lines
367 B
Makefile
# This is the minimal test component makefile.
|
|
#
|
|
# The following line is needed to force the linker to include all the object
|
|
# files into the application, even if the functions in these object files
|
|
# are not referenced from outside (which is usually the case for unit tests).
|
|
#
|
|
COMPONENT_ADD_LDFLAGS = -Wl,--whole-archive -l$(COMPONENT_NAME) -Wl,--no-whole-archive
|