Skip to content

Commit

Permalink
makefile: remove unneeded priority dependency from library makefile
Browse files Browse the repository at this point in the history
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 <andrzej.kurek@arm.com>
  • Loading branch information
Andrzej Kurek committed Mar 26, 2020
1 parent 2451ac6 commit 98911cd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions library/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 $<
Expand Down

0 comments on commit 98911cd

Please sign in to comment.