]> diplodocus.org Git - nmh/blob - docs/historical/2.9BSD/man/Makefile
Added several historical source archives from the early days of MH.
[nmh] / docs / historical / 2.9BSD / man / Makefile
1 DEST = $(DESTDIR)/usr/man/mann
2
3 MAKEFILE = Makefile
4
5 PRINT = vtroff
6
7 SRCS = comp.1 \
8 dist.1 \
9 file.1 \
10 folder.1 \
11 forw.1 \
12 inc.1 \
13 next.1 \
14 pick.1 \
15 prev.1 \
16 prompter.1 \
17 repl.1 \
18 rmf.1 \
19 rmm.1 \
20 scan.1 \
21 send.1 \
22 show.1
23
24 all:;
25
26 clean:;
27
28 depend:; @mkmf -f $(MAKEFILE)
29
30 cp:; @echo Installing $(SRCS) in $(DEST)
31 @for i in $(SRCS); do cp $$i $(DEST)/`basename $$i .1`.n; done
32
33 print: $(SRCS)
34 @$(PRINT) -man $?
35 @touch print
36
37 update:;