mirror of
https://git.kernel.org/pub/scm/network/iproute2/iproute2.git
synced 2024-11-16 06:25:35 +08:00
6054c1ebf7
For all files in iproute2 which do not have an obvious license identification, mark them with SPDK GPL-2 Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
16 lines
301 B
Makefile
16 lines
301 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
INSTALL=install
|
|
INSTALLDIR=install -m 0755 -d
|
|
INSTALLMAN=install -m 0644
|
|
|
|
SUBDIRS = man3 man7 man8
|
|
|
|
all clean install:
|
|
@for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir $@ || exit $$?; done
|
|
|
|
distclean: clean
|
|
|
|
.PHONY: install clean distclean
|
|
|
|
.EXPORT_ALL_VARIABLES:
|