mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-18 13:25:18 +00:00

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:
|