blob: 2d47b05efa0bb94640254f92c906f38c1d78bced (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# $NetBSD: Makefile,v 1.22 2021/10/01 17:20:27 nia Exp $
WEB_PREFIX?= ${.CURDIR}/../htdocs
DBX_XML_CATALOG?= ${SGML_PREFIX}/docbook/4.5/catalog.xml
DBX_XML_DTD?= ${XML_PREFIX}/docbook/4.5/docbookx.dtd
DBX_SGML_CATALOG?= ${SGML_PREFIX}/docbook/4.5/catalog
DOC= pkgsrc
SRCS= pkgsrc.xml
SRCS+= binary.xml
SRCS+= build.xml
SRCS+= buildlink.xml
SRCS+= bulk.xml
SRCS+= creating.xml
SRCS+= components.xml
SRCS+= configuring.xml
SRCS+= devfaq.xml
SRCS+= editing.xml
SRCS+= examples.xml
SRCS+= faq.xml
SRCS+= files.xml
SRCS+= fixes.xml
SRCS+= ftp-layout.xml
SRCS+= getting.xml
SRCS+= hardening.xml
SRCS+= help-devel.xml
SRCS+= help-topics.xml
SRCS+= help-user.xml
SRCS+= infr.design.xml
SRCS+= introduction.xml
SRCS+= logs.xml
SRCS+= makefile.xml
SRCS+= options.xml
SRCS+= pkginstall.xml
SRCS+= platforms.xml
SRCS+= plist.xml
SRCS+= porting.xml
SRCS+= regression.xml
SRCS+= submit.xml
SRCS+= tools.xml
SRCS+= using.xml
# entities
SRCS+= chapters.ent
# Make deeper TOC:
XSL_DBX_WITH_TOC_SECTION_DEPTH?= 2
# Avoid extra normalization
NO_TIDY?= yes
all: # doing this as depends doesn't work
-${MAKE} html-split
-${MAKE} html
-${MAKE} ascii
-${MAKE} pdf
netbsd.pdf: pdf
netbsd.txt: ascii
netbsd.epub: epub
.include "${WEB_PREFIX}/share/mk/doc.docbook.mk"
|