From: Simon Glass Date: Sat, 3 Oct 2020 15:25:23 +0000 (-0600) Subject: dm: test: Sort the Makefile X-Git-Tag: v2021.10~451^2~63 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1cadc7611755bcd5e28e98515f4814e598196daa;p=platform%2Fkernel%2Fu-boot.git dm: test: Sort the Makefile Move everything into alphabetical order. Signed-off-by: Simon Glass --- diff --git a/test/Makefile b/test/Makefile index 7c40399..13ee661 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