mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-11-02 23:56:26 +00:00
The lib makefile doesn't include Config which means it misses setting up toolchain vars that it includes. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22 lines
370 B
Makefile
22 lines
370 B
Makefile
include ../Config
|
|
|
|
CFLAGS += -fPIC
|
|
|
|
UTILOBJ=utils.o rt_names.o ll_types.o ll_proto.o ll_addr.o inet_proto.o
|
|
|
|
NLOBJ=libgenl.o ll_map.o libnetlink.o
|
|
|
|
all: libnetlink.a libutil.a
|
|
|
|
libnetlink.a: $(NLOBJ)
|
|
$(AR) rcs $@ $(NLOBJ)
|
|
|
|
libutil.a: $(UTILOBJ) $(ADDLIB)
|
|
$(AR) rcs $@ $(UTILOBJ) $(ADDLIB)
|
|
|
|
install:
|
|
|
|
clean:
|
|
rm -f $(NLOBJ) $(UTILOBJ) $(ADDLIB) libnetlink.a libutil.a
|
|
|