summaryrefslogtreecommitdiffstats
path: root/man/man3/Makefile
blob: 1732be266155ef299ca406362a5c8afc3d738341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# SPDX-License-Identifier: GPL-2.0
MAN3PAGES = $(wildcard *.3)

all:

distclean: clean

clean:

install:
	$(INSTALLDIR) $(DESTDIR)$(MANDIR)/man3
	$(INSTALLMAN) $(MAN3PAGES) $(DESTDIR)$(MANDIR)/man3

check:
	@for page in $(MAN3PAGES); do test 0 -eq $$($(MAN_CHECK) $$page \
		$(MAN_REDIRECT)) || { echo "Error in $$page"; exit 1; }; done

.PHONY: install clean distclean check