mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-06 08:45:57 +00:00

If an error occurs in a man subdir, make sure we propagate it back up. While we're here, merge the duplicate rules into one. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15 lines
266 B
Makefile
15 lines
266 B
Makefile
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:
|