From 98911cdd3ae9d99c6d23b9045edb1f355476df46 Mon Sep 17 00:00:00 2001 From: Andrzej Kurek Date: Thu, 26 Mar 2020 07:18:42 -0400 Subject: [PATCH] makefile: remove unneeded priority dependency from library makefile This change was first introduced in 8af3923 - see this commit for more background. After the removal of crypto directory, there are no targets that require a crypto library with the directory prefix, so there's also no need for the priority dependency to be declared. This commit removes it. Signed-off-by: Andrzej Kurek --- library/Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/Makefile b/library/Makefile index 92799d904..f9cd468a5 100644 --- a/library/Makefile +++ b/library/Makefile @@ -201,8 +201,6 @@ libmbedcrypto.dll: $(OBJS_CRYPTO) echo " LD $@" $(CC) -shared -Wl,-soname,$@ -Wl,--out-implib,$@.a -o $@ $(OBJS_CRYPTO) -lws2_32 -lwinmm -lgdi32 -static-libgcc $(LOCAL_LDFLAGS) $(LDFLAGS) -libmbedcrypto.$(DLEXT): | libmbedcrypto.a - .c.o: echo " CC $<" $(CC) $(LOCAL_CFLAGS) $(CFLAGS) -o $@ -c $<