mirror_iproute2/man/Makefile
Mike Frysinger 55eaaeb57a do not ignore errors in man subdirs
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>
2013-01-15 09:41:37 -08:00

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: