blob: 35e9e24316ac4fe05562948c431208f02f124a81 (
plain) (
blame)
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
|
#
# $FreeBSD$
#
# Crea l'Introduzione a Unix.
#
MAINTAINER= sysadmin@alexdupre.com
DOC?= book
FORMATS?= html-split
INSTALL_COMPRESSED?=gz
INSTALL_ONLY_COMPRESSED?=
#
# SRCS lista i singoli files SGML che compongono il documento. Modifiche
# a qualunque di questi files obbligano la ricreazione
#
# Contenuto SGML
SRCS = book.sgml
SRCS+= bibliography/chapter.sgml
SRCS+= command-summary/chapter.sgml
SRCS+= commands/chapter.sgml
SRCS+= editors/chapter.sgml
SRCS+= getting-started/chapter.sgml
SRCS+= glossary/chapter.sgml
SRCS+= history/chapter.sgml
SRCS+= preface/preface.sgml
SRCS+= shell-programming/chapter.sgml
SRCS+= shells/chapter.sgml
SRCS+= special-features/chapter.sgml
SRCS+= structure/chapter.sgml
SRCS+= system-resource/chapter.sgml
SRCS+= text-processing/chapter.sgml
# Entities
SRCS+= chapters.ent
DOC_PREFIX?= ${.CURDIR}/../../..
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|