lib: Correct object file dependencies
Neither internal libnetlink nor libgenl depends on ll_map.o: prepare for upcoming changes that brings much more cleaner dependency between utils.o and ll_map.o. However ll_map.o depends on libnetlink.o functions so we need to provide libnetlink.a after libutil.a in LIBNETLINK at global Makefile. Tested using make clean && make -j4. No problems so far. Signed-off-by: Serhey Popovych <serhe.popovych@gmail.com> Signed-off-by: David Ahern <dsahern@gmail.com>
This commit is contained in:
parent
1bccd1e43b
commit
0cec58dac4
2
Makefile
2
Makefile
|
|
@ -59,7 +59,7 @@ YACCFLAGS = -d -t -v
|
||||||
|
|
||||||
SUBDIRS=lib ip tc bridge misc netem genl tipc devlink rdma man
|
SUBDIRS=lib ip tc bridge misc netem genl tipc devlink rdma man
|
||||||
|
|
||||||
LIBNETLINK=../lib/libnetlink.a ../lib/libutil.a
|
LIBNETLINK=../lib/libutil.a ../lib/libnetlink.a
|
||||||
LDLIBS += $(LIBNETLINK)
|
LDLIBS += $(LIBNETLINK)
|
||||||
|
|
||||||
all: config.mk
|
all: config.mk
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@ include ../config.mk
|
||||||
|
|
||||||
CFLAGS += -fPIC
|
CFLAGS += -fPIC
|
||||||
|
|
||||||
UTILOBJ = utils.o rt_names.o ll_types.o ll_proto.o ll_addr.o \
|
UTILOBJ = utils.o rt_names.o ll_map.o ll_types.o ll_proto.o ll_addr.o \
|
||||||
inet_proto.o namespace.o json_writer.o json_print.o \
|
inet_proto.o namespace.o json_writer.o json_print.o \
|
||||||
names.o color.o bpf.o exec.o fs.o
|
names.o color.o bpf.o exec.o fs.o
|
||||||
|
|
||||||
NLOBJ=libgenl.o ll_map.o libnetlink.o
|
NLOBJ=libgenl.o libnetlink.o
|
||||||
|
|
||||||
all: libnetlink.a libutil.a
|
all: libnetlink.a libutil.a
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue