mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2026-01-28 05:47:49 +00:00
Make sure we use 64-bit filesystem functions everywhere. This applies not only to being able to read large files (which generally doesn't apply to us), but also being able to simply stat them (as they might be using large inodes). Signed-off-by: Mike Frysinger <vapier@chromium.org>
89 lines
2.1 KiB
Makefile
89 lines
2.1 KiB
Makefile
PREFIX?=/usr
|
|
LIBDIR?=$(PREFIX)/lib
|
|
SBINDIR?=/sbin
|
|
CONFDIR?=/etc/iproute2
|
|
DATADIR?=$(PREFIX)/share
|
|
DOCDIR?=$(DATADIR)/doc/iproute2
|
|
MANDIR?=$(DATADIR)/man
|
|
ARPDDIR?=/var/lib/arpd
|
|
KERNEL_INCLUDE?=/usr/include
|
|
|
|
# Path to db_185.h include
|
|
DBM_INCLUDE:=$(DESTDIR)/usr/include
|
|
|
|
SHARED_LIBS = y
|
|
|
|
DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\"
|
|
ifneq ($(SHARED_LIBS),y)
|
|
DEFINES+= -DNO_SHARED_LIBS
|
|
endif
|
|
|
|
DEFINES+=-DCONFDIR=\"$(CONFDIR)\"
|
|
|
|
#options for decnet
|
|
ADDLIB+=dnet_ntop.o dnet_pton.o
|
|
|
|
#options for ipx
|
|
ADDLIB+=ipx_ntop.o ipx_pton.o
|
|
|
|
#options for mpls
|
|
ADDLIB+=mpls_ntop.o mpls_pton.o
|
|
|
|
CC = gcc
|
|
HOSTCC = gcc
|
|
DEFINES += -D_GNU_SOURCE
|
|
# Turn on transparent support for LFS
|
|
DEFINES += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
|
|
CCOPTS = -O2
|
|
WFLAGS := -Wall -Wstrict-prototypes -Wmissing-prototypes
|
|
WFLAGS += -Wmissing-declarations -Wold-style-definition -Wformat=2
|
|
|
|
CFLAGS := $(WFLAGS) $(CCOPTS) -I../include $(DEFINES) $(CFLAGS)
|
|
YACCFLAGS = -d -t -v
|
|
|
|
SUBDIRS=lib ip tc bridge misc netem genl tipc man
|
|
|
|
LIBNETLINK=../lib/libnetlink.a ../lib/libutil.a
|
|
LDLIBS += $(LIBNETLINK)
|
|
|
|
all: Config
|
|
@set -e; \
|
|
for i in $(SUBDIRS); \
|
|
do $(MAKE) $(MFLAGS) -C $$i; done
|
|
|
|
Config:
|
|
sh configure $(KERNEL_INCLUDE)
|
|
|
|
install: all
|
|
install -m 0755 -d $(DESTDIR)$(SBINDIR)
|
|
install -m 0755 -d $(DESTDIR)$(CONFDIR)
|
|
install -m 0755 -d $(DESTDIR)$(ARPDDIR)
|
|
install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples
|
|
install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples/diffserv
|
|
install -m 0644 README.iproute2+tc $(shell find examples -maxdepth 1 -type f) \
|
|
$(DESTDIR)$(DOCDIR)/examples
|
|
install -m 0644 $(shell find examples/diffserv -maxdepth 1 -type f) \
|
|
$(DESTDIR)$(DOCDIR)/examples/diffserv
|
|
@for i in $(SUBDIRS) doc; do $(MAKE) -C $$i install; done
|
|
install -m 0644 $(shell find etc/iproute2 -maxdepth 1 -type f) $(DESTDIR)$(CONFDIR)
|
|
|
|
snapshot:
|
|
echo "static const char SNAPSHOT[] = \""`date +%y%m%d`"\";" \
|
|
> include/SNAPSHOT.h
|
|
|
|
clean:
|
|
@for i in $(SUBDIRS) doc; \
|
|
do $(MAKE) $(MFLAGS) -C $$i clean; done
|
|
|
|
clobber:
|
|
touch Config
|
|
$(MAKE) $(MFLAGS) clean
|
|
rm -f Config cscope.*
|
|
|
|
distclean: clobber
|
|
|
|
cscope:
|
|
cscope -b -q -R -Iinclude -sip -slib -smisc -snetem -stc
|
|
|
|
.EXPORT_ALL_VARIABLES:
|