diff options
author | Murray Stokely <murray@FreeBSD.org> | 2004-09-07 12:31:19 +0000 |
---|---|---|
committer | Murray Stokely <murray@FreeBSD.org> | 2004-09-07 12:31:19 +0000 |
commit | daace7a21e4ba59d63a7894320dfe24423b6295c (patch) | |
tree | 940dd9ae9b09e62cb4738eefee231e361f0baf6f /en_US.ISO8859-1/slides | |
parent | ec971e29ad755afa484d46d458487860ca1be4f8 (diff) | |
download | doc-daace7a21e4ba59d63a7894320dfe24423b6295c.tar.gz doc-daace7a21e4ba59d63a7894320dfe24423b6295c.zip |
Add Makefile that builds only the freebsd-general directory. At the
moment there is no processing needed for the common/ directory, though
in the future, we could pull in content there from other parts of the
tree to automatically keep the common slides about the most recent
freebsd releases up to date, number of committers/ports, etc..
Add a README that explains the directory hierarchy.
Notes
Notes:
svn path=/head/; revision=22268
Diffstat (limited to 'en_US.ISO8859-1/slides')
-rw-r--r-- | en_US.ISO8859-1/slides/Makefile | 6 | ||||
-rw-r--r-- | en_US.ISO8859-1/slides/README | 28 |
2 files changed, 34 insertions, 0 deletions
diff --git a/en_US.ISO8859-1/slides/Makefile b/en_US.ISO8859-1/slides/Makefile new file mode 100644 index 0000000000..767c623a44 --- /dev/null +++ b/en_US.ISO8859-1/slides/Makefile @@ -0,0 +1,6 @@ +# $FreeBSD$ + +SUBDIR= freebsd-general + +DOC_PREFIX?= ${.CURDIR}/../.. +.include "${DOC_PREFIX}/share/mk/doc.project.mk" diff --git a/en_US.ISO8859-1/slides/README b/en_US.ISO8859-1/slides/README new file mode 100644 index 0000000000..a8e198b2c0 --- /dev/null +++ b/en_US.ISO8859-1/slides/README @@ -0,0 +1,28 @@ +$FreeBSD$ + +This directory holds slides for presentations about FreeBSD. + +The common/ directory holds XML files each containing at least one +slide that are thought to be reusable across more than one +presentation. Other presentations can simply use <xi:include> to pull +in the desired slides from the common directory. + +The freebsd-general/ directory holds an example presentation that +includes general information about FreeBSD, including it's goals, +organization, and features. + +Presentations from specific conferences or meetings can be added here +in the following format : + +YYYYMMDD-eventname + +or + +YYYYMMDD-eventname-title + +as required. + +From within a presentation directory, simply type 'make' to build an +HTML version of the presentation. + +PDF output is also supported, with 'make FORMATS=pdf'. |