aboutsummaryrefslogtreecommitdiff
path: root/doc/man7/Makefile
blob: f9dc22cfc9051170f9454b666f00a32ef9f614da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.POSIX:

prefix = /usr/local
datarootdir = $(prefix)/share
mandir = $(datarootdir)/man
man7dir = $(mandir)/man7
OBJECTS = \
	$(DESTDIR)$(man7dir)/libweb_handler.7 \
	$(DESTDIR)$(man7dir)/libweb_html.7 \
	$(DESTDIR)$(man7dir)/libweb_http.7

all:

install: $(OBJECTS)

$(DESTDIR)$(man7dir)/%.7: %.7
	mkdir -p $(DESTDIR)$(man7dir)
	cp $< $@
	chmod 0644 $@