diff options
author | Simon Glass <sjg@chromium.org> | 2020-10-03 09:25:23 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-10-29 14:42:17 -0600 |
commit | 1cadc7611755bcd5e28e98515f4814e598196daa (patch) | |
tree | f5926ee342d911c50a14536965e79811e4cfe238 /test | |
parent | a652d9c73a6eea1fdfb901c66178a4d804fac95d (diff) | |
download | u-boot-1cadc7611755bcd5e28e98515f4814e598196daa.tar.gz |
dm: test: Sort the Makefile
Move everything into alphabetical order.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile index 7c4039964e..13ee661f50 100644 --- a/test/Makefile +++ b/test/Makefile @@ -5,12 +5,12 @@ obj-$(CONFIG_SANDBOX) += bloblist.o obj-$(CONFIG_CMDLINE) += cmd/ obj-$(CONFIG_UNIT_TEST) += cmd_ut.o -obj-$(CONFIG_UNIT_TEST) += ut.o obj-$(CONFIG_SANDBOX) += command_ut.o obj-$(CONFIG_SANDBOX) += compression.o +obj-$(CONFIG_UNIT_TEST) += lib/ +obj-y += log/ obj-$(CONFIG_SANDBOX) += print_ut.o obj-$(CONFIG_SANDBOX) += str_ut.o obj-$(CONFIG_UT_TIME) += time_ut.o obj-$(CONFIG_UT_UNICODE) += unicode_ut.o -obj-y += log/ -obj-$(CONFIG_UNIT_TEST) += lib/ +obj-$(CONFIG_UNIT_TEST) += ut.o |