Skip to content

Commit 75e6215

Browse files
committed
networking: Fix make install.
Library and header naming is not consistent with other subdirectories, this should be fixed after release.
1 parent 79decc2 commit 75e6215

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

networking/Dir.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Makefile fragment - requires GNU make
22
#
3-
# Copyright (c) 2019-2020, Arm Limited.
3+
# Copyright (c) 2019-2025, Arm Limited.
44
# SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
55

66
S := $(srcdir)/networking
@@ -46,12 +46,12 @@ $(networking-objs): CFLAGS_ALL += $(networking-cflags)
4646
build/lib/libnetworking.so: $(networking-lib-objs:%.o=%.os)
4747
$(CC) $(CFLAGS_ALL) $(LDFLAGS) -shared -o $@ $^
4848

49-
build/lib/libnetworkinglib.a: $(networking-lib-objs)
49+
build/lib/libnetworking.a: $(networking-lib-objs)
5050
rm -f $@
5151
$(AR) rc $@ $^
5252
$(RANLIB) $@
5353

54-
build/bin/test/%: $(B)/test/%.o build/lib/libnetworkinglib.a
54+
build/bin/test/%: $(B)/test/%.o build/lib/libnetworking.a
5555
$(CC) $(CFLAGS_ALL) $(LDFLAGS) -static -o $@ $^ $(LDLIBS)
5656

5757
build/include/%.h: $(S)/include/%.h

0 commit comments

Comments
 (0)